:root {
    --dark-bg: #534741;
    --accent-color: #d2a472;
    --gray-color: #f4f3ee;
    --secondary-dark-color:#242f1d ;
    --font-1: 'Alata', sans-serif;
    --font-2: 'Spectral', serif;;
    --font-3: 'Playfair Display', serif;
}
#magic-container {
    font-family: Arial, sans-serif;
    background: #222;
    color: white;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    max-width: 400px;
    margin: 30px auto;
    text-align: center;
  }

  #magic-container button {
    padding: 10px 20px;
    margin-top: 20px;
    background: #e60073;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  #magic-container button:hover {
    background: #ff3399;
  }

  .magic-step {
    margin: 15px 0;
    font-size: 18px;
  }
/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  #preloader.hide { opacity: 0; visibility: hidden; }
  
  .preload-inner {
    display: grid;
    place-items: center;
    gap: 16px;
    text-align: center;
    color: var(--accent-color);
    font-family: var(--font-1);
  }
  
  .preload-logo {
    width: 80px;
    height: 80px;
  }
  
  .preload-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(210, 164, 114, 0.3);
    border-top-color: var(--accent-color);
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin { to { transform: rotate(360deg); } }
  
  .preload-text {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
  }
  
   
.reviews-widget__review-source { 
    display: none !important;
  }
.reviews-widget__count  {
    display: none !important;
  }
.reviews-widget__stars {
    width: 100%;
  }
/* Put this with your marquee CSS */
.logo-marquee {
    /* tune these */
    --fade-color: #fff;          /* set to your section background */
    --fade-width: 60px;          /* fade size */
  
    position: relative;
    overflow: hidden;
  }
  
  /* left/right fades */
  .logo-marquee::before,
  .logo-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: var(--fade-width);
    pointer-events: none;        /* don't block hover */
    z-index: 3;                  /* above the moving track */
  }
  
  .logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--fade-color), rgba(255,255,255,0));
  }
  
  .logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--fade-color), rgba(255,255,255,0));
  }
  
  .logo-marquee { position: relative; overflow: hidden; }
  .marquee-track {
    display: flex;
    width: max-content;
    /* use longhand so CSS vars never break the shorthand */
    animation-name: marquee;
    animation-duration: var(--dur, 30s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
  }
  .logo-strip {
    display: flex; align-items: center; gap: clamp(24px, 6vw, 56px);
    padding: 10px 0; margin: 0; list-style: none;
  }
  .logo-strip li { flex: 0 0 auto; }
  .logo-strip img { display: block; height: clamp(28px, 5vw, 52px); width: auto; }
  
  .logo-marquee:hover .marquee-track { animation-play-state: paused; }
  
  /* If your OS has reduced motion on, the animation stops.
     Add this utility class to the wrapper to force it on: */
  .logo-marquee.force-animate .marquee-track { animation-play-state: running !important; }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* exactly one strip width (since there are two) */
  }
  

body {
    background-color: var(--dark-bg);
}


h1 {
    font-size: 100px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 50px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

button,
a[type="button"] {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    border: 2px solid var(--accent-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.5s;
}

a:hover {
    color: var(--accent-color);
}

a {
    text-decoration: none;
}

.form input , .form textarea {
    background-color:#2f2f2f;
    color: white;
    border: none;
}

.form input:focus , .form textarea:focus
 {
    background-color:#2f2f2f;
    color: white;
    border: none;
    box-shadow: none;
}

.nav-link:focus{
    color: var(--gray-color) !important;
}

.section {
    padding: 10em 1em 10em 1em;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color);
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark-color);
}

.bg-secondary-gray {
    background-color: #2f2f2f;
}

.text-gray {
    color: var(--gray-color);
}

.text-dark-color {
    color: var(--secondary-dark-color);
}

.nav-link {
    color: var(--gray-color);
}

.navbar .nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar .dropdown-item {
    color: var(--gray-color);
}

.navbar .dropdown-item:hover {
    color: var(--accent-color);
    background-color: var(--secondary-dark-color);
}

.navbar .dropdown-item.active {
    color: var(--accent-color);
    background-color: var(--secondary-dark-color);
}

.logo-container {
    max-width: 150px;
}

.social-icon {
    font-size: 20px;
}

.white-text-hover:hover {
    color: white;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #212121;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.divider {
    display: flex;
    width: 12%;
    align-items: center;
    font-size: 20px;
}

.divider::before,
.divider::after {
    content: "";
    display: block;
    border-bottom: 0;
    flex-grow: 1;
    border-top: 1px dashed var(--accent-color);
    margin-inline: 0.5rem;
}

.secondary-color-hover:hover {
    background-color: var(--secondary-dark-color);
    color: white;
}

.accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.icon-box {
    border-radius: 50%;
    font-size: 32px;
    width: 5rem;
    height: 5rem;
}

.bg-overlay {
    background-color: #18181896;
}

.shadow {
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.5) !important;
}

.border-bottom {
    border-bottom: solid 1px #505050 !important;
}

.border-left {
    border-left: solid 1px #373737 ;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-btn {
    aspect-ratio: 1/1;
    padding: 0;
    border-radius: 50%;
}

.video-btn-larger {
    width: 4rem;
    font-size: 36px;
}

.video-btn-small {
    width: 2.5rem;
    font-size: 24px;
}

.video-iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.maps{
    width: 100%;
    height: 400px;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
}

.link-white {
    color: var(--gray-color);
}

.link-white:hover {
    color: white;
}

.alata-regular {
    font-family: "Alata", sans-serif;
    font-weight: 400;
    font-style: normal;
  }




.spectral-extralight {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-style: normal;
}

.spectral-light {
  font-family: "Spectral", serif;
  font-weight: 300;
  font-style: normal;
}

.spectral-regular {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
}

.spectral-medium {
  font-family: "Spectral", serif;
  font-weight: 500;
  font-style: normal;
}

.spectral-semibold {
  font-family: "Spectral", serif;
  font-weight: 600;
  font-style: normal;
}

.spectral-bold {
  font-family: "Spectral", serif;
  font-weight: 700;
  font-style: normal;
}

.spectral-extrabold {
  font-family: "Spectral", serif;
  font-weight: 800;
  font-style: normal;
}

.spectral-extralight-italic {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-style: italic;
}

.spectral-light-italic {
  font-family: "Spectral", serif;
  font-weight: 300;
  font-style: italic;
}

.spectral-regular-italic {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: italic;
}

.spectral-medium-italic {
  font-family: "Spectral", serif;
  font-weight: 500;
  font-style: italic;
}

.spectral-semibold-italic {
  font-family: "Spectral", serif;
  font-weight: 600;
  font-style: italic;
}

.spectral-bold-italic {
  font-family: "Spectral", serif;
  font-weight: 700;
  font-style: italic;
}

.spectral-extrabold-italic {
  font-family: "Spectral", serif;
  font-weight: 800;
  font-style: italic;
}

@media only screen and (max-width:768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    .divider {
        width: 30%;
    }
    .border-left {
        border-left: none;
    }
}

#floating-quote {
    position: fixed;
    top: -80px; /* start hidden above the screen */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: top 0.4s ease, opacity 0.4s ease;
  }
  

  
  #floating-quote.show:hover {
    animation: wiggle 0.6s ease;  /* wiggle again on hover */
  }
  
  @keyframes wiggle {
    0%   { transform: translateX(-50%) rotate(0deg); }
    5%   { transform: translateX(-50%) rotate(-5deg); }
    10%  { transform: translateX(-50%) rotate(5deg); }
    15%  { transform: translateX(-50%) rotate(-3deg); }
    20%  { transform: translateX(-50%) rotate(3deg); }
    25%  { transform: translateX(-50%) rotate(-2deg); }
    30%  { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(0deg); } /* stay still until next loop */
  }
  
  #floating-quote.show {
    top: 20px;
    opacity: 1;
    animation: wiggle 2s ease-in-out infinite;
  }
  
  
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #534741;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-icon {
    width: 35px;
    height: 35px;
  }
  

  #google-reviews-container {
    margin: 0 auto;
}
.review-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}
.review-author {
    font-weight: bold;
    margin: 0;
}
.review-rating {
    color: #f5b300; /* Gold color for stars */
    margin: 0 0 10px;
}
.review-text {
    line-height: 1.5;
    color: #555;
    margin: 0 0 10px;
}
.review-time {
    font-size: 0.85em;
    color: #888;
}
/* Simple loader for feedback */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Adjust the 48px to the badge height you see */
iframe[src*="app.shapo.io/widgets"] {
    clip-path: inset(0 0 76px 0);
  }