/* 1️⃣ Google Fonts (if in CSS) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

html {
  scroll-behavior: smooth;
}

/* 2️⃣ BRAND VARIABLES (PASTE HERE) */
:root {
  --brand-warm-brown: #655e53;
  --brand-rust: #5f3024;
  --brand-charcoal: #201e1b;
  --brand-cream: #dfdedb;
}

/* 3️⃣ Global / Base styles */
body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.7;
  background-color: var(--brand-cream);
  color: var(--brand-charcoal);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

::selection {
  background: var(--brand-rust);
  color: var(--brand-cream);
}

/* ==========================
   PARALLAX SECTION COLORS
========================== */

.parallax-live {
  color: var(--brand-cream);
}

/* Headings */
.parallax-live h2,
.parallax-live h3,
.parallax-live h4 {
  color: var(--brand-cream);
}

/* Section subtitle */
.parallax-live .section-subtitle {
  color: rgba(223, 222, 219, 0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Body text */
.parallax-live p {
  color: rgba(223, 222, 219, 0.9);
}

/* Accent underline / divider */
.parallax-live .divider,
.parallax-live .hero-line {
  background-color: var(--brand-warm-brown);
}

/* 4️⃣ Links */
a {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--brand-rust);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover,
a:focus {
  color: var(--brand-warm-brown);
  text-decoration: none;
}

/* 5️⃣ HEADERS */
h1, h2, h3, h4, h5, h6, .section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--brand-charcoal);
}

/* 6️⃣ Buttons */
.btn {
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.15em;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.btn-primary {
  background: var(--brand-rust);
  border: 1px solid var(--brand-rust);
  color: var(--brand-cream);
}

.btn.btn-primary:hover {
  background: #4b241b;
  border-color: #4b241b;
}

.btn.btn-secondary {
  background: transparent;
  border: 1px solid var(--brand-rust);
  color: var(--brand-rust);
}

.btn.btn-secondary:hover {
  background: var(--brand-rust);
  color: var(--brand-cream);
}

/* 7️⃣ Form inputs */
.form-control {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--brand-cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-warm-brown);
  border-radius: 0;
  height: 45px;
  padding-left: 0;
  padding-right: 0;
}

.form-control:focus {
  border-color: var(--brand-rust);
  outline: none;
  box-shadow: none;
  background: transparent;
}

/* 8️⃣ Preloader */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: var(--brand-charcoal);
  top: 0;
  left: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-cream);
  font-family: 'Playfair Display', serif;
}



.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--brand-cream);
  border: 2px solid var(--brand-cream);
  position: absolute;
  
  width: 40px;
  height: 40px;
  margin-top: -4px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ffffff; }
  .logo:hover {
    color: #ffffff; }

.site-nav {
  position: absolute;
  width: 100%;
  z-index: 10; }
  .site-nav a {
    position: relative;
    z-index: 9;
    cursor: pointer; }

.site-nav {
  padding-top: 20px;
  padding-bottom: 20px; }
  .site-nav h1 {
    margin: 0;
    padding: 0;
    font-size: 24px; }
  .site-nav .site-navigation .site-menu {
    margin-bottom: 0; }
    .site-nav .site-navigation .site-menu > li {
      display: inline-block; }
      .site-nav .site-navigation .site-menu > li > a {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 14px;
        letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
        padding: 10px 15px;
        display: inline-block;
        text-decoration: none !important;
        color: var(--brand-cream);
        position: relative; }
        .site-nav .site-navigation .site-menu > li > a:hover {
          color: var(--brand-warm-brown); }
        .site-nav .site-navigation .site-menu > li > a.active {
          color: var(--brand-warm-brown); }
      .site-nav .site-navigation .site-menu > li.active > a {
        color: var(--brand-cream); }
    .site-nav .site-navigation .site-menu .has-children {
      position: relative; }
      .site-nav .site-navigation .site-menu .has-children > a {
        position: relative;
        padding-right: 20px; }
        .site-nav .site-navigation .site-menu .has-children > a:before {
          position: absolute;
          content: "\e313";
          font-size: 14px;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-family: 'icomoon'; }
      
  .site-nav.scrolled {
    background-color: var(--brand-warm-brown);
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin-top: -130px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    -webkit-box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1); }
    .site-nav.scrolled.awake {
      margin-top: 0px;
      -webkit-transition: .3s all ease-out;
      -o-transition: .3s all ease-out;
      transition: .3s all ease-out; }
    .site-nav.scrolled.sleep {
      -webkit-transition: .3s all ease-out;
      -o-transition: .3s all ease-out;
      transition: .3s all ease-out; }
      .site-nav.scrolled .site-navigation .site-menu li a {
        color: var(--brand-cream) }
    .site-nav.scrolled .site-navigation .site-menu li a:hover {
      color: var(--brand-rust) }
      .site-nav.scrolled .site-navigation .site-menu li a.active {
        color: var(--brand-cream) }
    .site-nav.scrolled .logo {
      color: var(--brand-cream)!important;
      border-color: var(--brand-cream);
      top: 14px;
      position: absolute; }
      @media (max-width: 991.98px) {
        .site-nav.scrolled .logo {
          top: 10px; } }
    .site-nav.scrolled .burger:before, .site-nav.scrolled .burger span, .site-nav.scrolled .burger:after {
      background: #000000 !important;
      -webkit-transition: .0s all ease;
      -o-transition: .0s all ease;
      transition: .0s all ease; }

.site-mobile-menu-close {
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
  z-index: 99;
  cursor: pointer;
  top: -20px; }
  .site-mobile-menu-close > span {
    cursor: pointer;
    display: block;
    position: absolute;
    height: 30px;
    width: 30px; }
    .site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after {
      position: absolute;
      content: "";
      width: 2px;
      height: 30px;
      background: #000000; }
    .site-mobile-menu-close > span:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .site-mobile-menu-close > span:after {
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background-color: var(--brand-charcoal);
  height: calc(100vh);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1); }
  .offcanvas-menu .site-mobile-menu {
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
      float: right;
      margin-top: 8px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
        font-size: 30px;
        display: inline-block;
        padding-left: 10px;
        padding-right: 0px;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px; }
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
    .site-mobile-menu .site-nav-wrap a {
      font-family: 'Source Sans 3', sans-serif;
      letter-spacing: 0.08em;
      padding: 5px 20px;
      display: block;
      position: relative;
      color: var(--brand-cream) }
      .site-mobile-menu .site-nav-wrap a:hover {
        color: #ffffff; }
    .site-mobile-menu .site-nav-wrap li {
      position: relative;
      display: block; }
      .site-mobile-menu .site-nav-wrap li > a.active {
        color: #ffffff; }
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
      position: absolute;
      right: 0px;
      top: 0px;
      z-index: 20;
      width: 36px;
      height: 36px;
      text-align: center;
      cursor: pointer;
      border-radius: 50%;
      border: 1px solid #f8f9fa; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 14px;
        z-index: 20;
        font-family: "icomoon";
        content: "\e313";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .site-mobile-menu .site-nav-wrap > li {
      display: block;
      position: relative;
      float: left;
      width: 100%; }
      .site-mobile-menu .site-nav-wrap > li > a {
        padding-left: 20px;
        font-size: 14px; }
      .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin: 0;
        list-style: none; }
        .site-mobile-menu .site-nav-wrap > li > ul > li {
          display: block; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > a {
            padding-left: 40px;
            font-size: 14px; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
            padding: 0;
            margin: 0; }
            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
              display: block; }
              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                font-size: 14px;
                padding-left: 60px; }

/* Burger */
.burger {
  width: 28px;
  height: 32px;
  cursor: pointer;
  position: relative; }
  .burger.light:before, .burger.light span, .burger.light:after {
    background: #ffffff; }

.burger:before, .burger span, .burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #000;
  border-radius: 2px;
  position: absolute;
  opacity: 1; }

.burger:before, .burger:after {
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: ""; }

.burger:before {
  top: 4px; }

.burger span {
  top: 15px; }

.burger:after {
  top: 26px; }

/* Hover */
.burger:hover:before {
  top: 7px; }

.burger:hover:after {
  top: 23px; }

/* Click */
.burger.active span {
  opacity: 0; }

.burger.active:before, .burger.active:after {
  top: 40%; }

.burger.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/ }

.burger.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/ }

.burger:focus {
  outline: none; }

.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  background-position: center center; }
  .site-blocks-cover.overlay {
    position: relative; }
    .site-blocks-cover.overlay:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      right: 0;
      top: 0;
      background: rgba(0, 0, 0, 0.4); }
  .site-blocks-cover .player {
    position: absolute;
    bottom: -250px;
    width: 100%; }
  .site-blocks-cover, .site-blocks-cover .row {
    min-height: 600px;
    height: calc(100vh); }
  .site-blocks-cover h2, .site-blocks-cover h3, .site-blocks-cover h4, .site-blocks-cover h5 {
    color: #ffffff; }
  .site-blocks-cover h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1; }
    @media (min-width: 768px) {
      .site-blocks-cover h1 {
        font-size: 50px; } }
  .site-blocks-cover p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.5; }



.site-section {
  padding: 100px 0; }
  @media (max-width: 991.98px) {
    .site-section {
      padding: 70px 0; } }

.img-wrap {
  position: relative; }
  .img-wrap:before {
    z-index: -1;
    right: 0;
    -webkit-transform: translate(40%, -20%);
    -ms-transform: translate(40%, -20%);
    transform: translate(40%, -20%);
    position: absolute;
    content: "";
    width: 304px;
    height: 264px;
    }




.hero-wix {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 1.5em;
  text-transform: uppercase;
  line-height: normal;
  color: #F3F3F3;

  width: 100%;
  text-align: center;
  margin: 0;

  /* ✅ FIX */
  padding-left: 1.5em;
}


/* PROMO STRIP */
.hero-promos-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

/* Horizontal lines */
.hero-line {
  width: 80px;              /* slightly longer */
  height: 1px;
  background-color: #fff;
  opacity: 1;
}

/* Promo logos */
.hero-promos-img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

/* Left logo — smaller & softer */
.hero-promos-left {
  max-height: 105px;
  opacity: 0.75;
}

/* Right logo — smaller & softer */
.hero-promos-right {
  
  opacity: 0.85;
}
/* Plus sign */
.hero-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 800;
  color: #FFFFF0;
  line-height: 1;
}


.hero-scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.5rem; /* more breathing room */
  text-decoration: none;
  cursor: pointer;
}

.hero-scroll-down .scroll-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;              /* ⬆ bigger */
  letter-spacing: 0.35em;       /* bold, confident spacing */
  text-transform: uppercase;
  color: var(--brand-cream);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-scroll-down .scroll-arrow {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;              /* ⬆ bigger arrow */
  line-height: 1;
  color: var(--brand-cream);
  animation: scrollArrowBounce 2.5s ease-in-out infinite;
}

/* Hover polish */
.hero-scroll-down:hover .scroll-text,
.hero-scroll-down:hover .scroll-arrow {
  opacity: 1;
}

/* Arrow animation (slower + smoother) */
@keyframes scrollArrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .hero-promos-wrap {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .hero-line {
    width: 50px;
  }

  .hero-promos-img {
    max-height: 100px;
  }

  .hero-promos-left {
    max-height: 80px;
  }

  .hero-plus {
    font-size: 3.5rem;
  }
}


/* Ensure hero positioning */
.site-blocks-cover {
  position: relative;
  overflow: hidden;
}

/* SPOTLIGHT OVERLAY */
.spotlight-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,0.25) 0%,
      rgba(255,255,255,0.15) 20%,
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0.75) 70%
    );
  pointer-events: none;
  z-index: 1;
}

/* STARS CONTAINER */
.stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Individual star */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation:
    twinkle 2s infinite ease-in-out,
    floatStar linear infinite;
}

/* STAR ANIMATIONS */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
}

@keyframes floatStar {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

/* Keep hero text above everything */
.site-blocks-cover .container-fluid {
  position: relative;
  z-index: 3;
}

.bgColour {
  background-color: var(--brand-charcoal);
}

    /* --- ABOUT WRAPPER --- */
    .about-wrapper {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: nowrap !important;
      align-items: stretch !important;  /* both children equal height */
      width: 100%;
    }
    
    .about-video,
    .about-content {
      flex: 1 1 50% !important;
      min-width: 0 !important;
      height: auto !important;          /* let flexbox stretch them */
    }
    
    /* --- VIDEO COLUMN --- */
    .about-video {
      position: relative;
      overflow: hidden;
      background-color: #2b2b2b; /* dark charcoal fallback */
    }
    
    .about-video video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: auto;              /* fill parent completely */
      object-fit: cover;
      object-position: bottom; /* anchor to bottom */
      display: block;
    }
    
    
    /* --- CONTENT COLUMN --- */
    .about-content {
      padding: 1.5rem 3rem;   /* smaller top/bottom padding */
      display: flex;
      align-items: center;    /* still centered vertically */
      background: #fff;
    }
    
    
    .about-content .content-inner {
      max-width: 520px;
    }
    
    /* --- RESPONSIVE STACK --- */
    @media (max-width: 991px) {
      .about-wrapper {
        flex-direction: column !important;
      }
    
      .about-video {
        height: 55vh;
        min-height: 380px;
        max-height: 700px;
      }
    
      .about-content {
        width: 100%;
        padding: 3rem 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .about-video {
        height: 45vh;
        min-height: 300px;
        max-height: 520px;
      }
    
      .about-content {
        padding: 2rem 1.5rem;
      }
    
      .scroll-text {
        font-size: 1.25rem;
        margin: 30px 0;
      }
    }
    
    /* --- VIDEO OVERLAY --- */
    .video-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
      z-index: 2;
      pointer-events: none;
    }
    
    .video-overlay-scroll {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    
      mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%);
      -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%);
    }
    
    .scroll-list {
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: scrollUp 120s linear infinite;
      position: relative;
    }
    
    .scroll-text {
      color: #FFFFF0;
      font-size: 2rem;
      font-family: 'Lobster', cursive;
      font-weight: bold;
      margin: 60px 0;
      text-align: center;
    }
    
    /* vertical scrolling animation */
    @keyframes scrollUp {
      0%   { transform: translateY(20%); opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 1; }
      100% { transform: translateY(-120%); opacity: 0; }
    }

/* --- CONTENT STYLING --- */
.about-block {
  margin-bottom: 1rem;
}

.about-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-warm-brown);
  margin-bottom: 0.5rem;
}

.about-leadin {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--brand-rust);
  margin-bottom: 1.75rem;
}

.about-content p:last-of-type {
  margin-top: 1.5rem;
}

.about-cta-text {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-warm-brown);
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(180deg, transparent 70%, rgba(255, 215, 0, 0.4) 70%);
  padding: 0 2px;
}




/* PARALLAX SECTION */
.parallax-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;

  background: url("../images/parallax_img.jpg") center center / cover no-repeat fixed;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* Dark overlay for readability */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

/* Centered text */
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.parallax-content h2 {
  color: #FFFFF0;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .parallax-section {
    background-attachment: scroll; /* fixes iOS */
    height: 50vh;
  }

  .parallax-content h2 {
    font-size: 2rem;
  }
}

/* LIVE SECTION */
.live-section {
  background: var(--brand-cream);
  padding: 6rem 0;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brand-warm-brown);
  margin-top: 0.75rem;
}

/* Left copy */
.live-copy {
  padding-right: 2rem;
}

.live-leadin {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand-rust);
  margin-bottom: 1.5rem;
}

.live-cta-text {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--brand-warm-brown);
  margin: 2rem 0 1.5rem;
}

/* Media / Cards */
.live-media .live-card {
  background: rgba(32, 30, 27, 0.85); /* darker and slightly transparent */
  color: var(--brand-cream);
  padding: 1.8rem;
  margin-bottom: 30px;
  border-radius: 6px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-media .live-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-cream);
  margin-bottom: 0.5rem;
}

.live-media .live-card p {
  color: rgba(223, 222, 219, 0.75);
}

.live-media .live-card a {
  color: var(--brand-warm-brown);
  font-weight: 600;
  text-decoration: none;
}

.live-media .live-card a:hover {
  color: var(--brand-cream);
}

.live-media .live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 991px) {
  .live-media {
    grid-template-columns: 1fr;
  }

  .live-copy {
    padding-right: 0;
  }
}

/* PARALLAX LIVE SECTION */
.parallax-live {
  position: relative;
  background-image: url('../images/live_parallax.png'); /* choose a moody live shot */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 0;
  overflow: hidden;
}

/* Dark overlay for readability */
.parallax-live .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(32, 30, 27, 0.7),
    rgba(32, 30, 27, 0.9)
  );
  z-index: 1;
}

/* Keep content above overlay */
.parallax-live .container {
  position: relative;
  z-index: 2;
}

/* Text color adjustments for parallax */
.parallax-live h2,
.parallax-live h4,
.parallax-live p,
.parallax-live a {
  color: var(--brand-cream);
}

.parallax-live .section-subtitle {
  color: #e6e4df;
}

.parallax-live .live-leadin {
  color: #f1eee9;
}

.parallax-live .live-cta-text {
  color: #d6d2cb;
}




@media (max-width: 991px) {
  .parallax-live {
    background-attachment: scroll;
  }
}

/* Primary button */
.parallax-live .btn-primary {
  background-color: var(--brand-rust);
  border-color: var(--brand-rust);
  color: var(--brand-cream);
}

.parallax-live .btn-primary:hover {
  background-color: #4b241b;
  border-color: #4b241b;
}

/* Secondary button */
.parallax-live .btn-secondary {
  background: transparent;
  border: 1px solid var(--brand-cream);
  color: var(--brand-cream);
}

.parallax-live .btn-secondary:hover {
  background: var(--brand-cream);
  color: var(--brand-charcoal);
}

/* CONTACT SECTION */
.contact-section {
  background-color: var(--brand-cream);
  color: var(--brand-cream);
  padding: 6rem 0;
}

.contact-section .section-heading h2 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-cream);
}

.contact-section .section-subtitle {
  color: var(--brand-warm-brown);
}

/* INPUT + TEXTAREA BASE STYLES */
.contact-section .form-control {
  border: 1px solid var(--brand-warm-brown);
  border-radius: 4px;
  padding: 0.75rem 1rem;

  background-color: transparent;
  color: var(--brand-cream);     /* default text color */
  caret-color: var(--brand-cream);  /* cursor color */
}

/* PLACEHOLDER COLOR */
.contact-section .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}


/* FOCUS STATE — WHEN USER IS TYPING */
.contact-section .form-control:focus {
  border-color: var(--brand-rust);
  box-shadow: none;
  color: var(--brand-cream) !important; /* force cream text */
}

/* BUTTONS */
.contact-section .btn-primary {
  background-color: var(--brand-rust);
  border-color: var(--brand-rust);
  color: var(--brand-cream);
}

.contact-section .btn-primary:hover {
  background-color: var(--brand-warm-brown);
  border-color: var(--brand-warm-brown);
}

.contact-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* FOOTER */
.site-footer {
  background-color: var(--brand-charcoal);
  color: var(--brand-cream);
  padding: 3rem 0;
}

.site-footer a {
  color: var(--brand-cream);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--brand-rust);
}

.footer-social {
  margin-top: 1rem;
}

/* Contact Section Parallax Background */
.parallax-contact {
  position: relative;
  background: url('../images/parallax_contact.png') repeat; /* use your image */
  background-size: cover;          /* fill the section */
  background-attachment: fixed;    /* parallax effect */
  
  color: var(--brand-cream);       /* ensures text is readable */
  padding: 100px 0;                /* spacing for content */
  z-index: 1;
}

/* Optional dark overlay for better contrast */
.parallax-contact .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 30, 27, 0.6); /* semi-transparent dark overlay */
  z-index: 1;
}

/* Ensure content is above the overlay */
.parallax-contact .container {
  position: relative;
  z-index: 2;
}

/* Optional tweaks for headings and text */
.parallax-contact h2,
.parallax-contact .section-subtitle,
.parallax-contact p,
.parallax-contact a {
  color: var(--brand-cream);  /* maintain readability */
}

a i.bi {
  font-size: 1.5rem;          /* bigger icons */
  margin-right: 0.5rem;       /* spacing before text */
  vertical-align: middle;
  color: var(--brand-cream);
  transition: color 0.3s;
}

a:hover i.bi {
  color: var(--brand-rust);
}

/* FORCE CREAM TEXT IN ALL STATES */
.contact-section .form-control {
  color: var(--brand-cream) !important;
  -webkit-text-fill-color: var(--brand-cream) !important; /* critical */
  background-color: transparent !important;
  caret-color: var(--brand-cream) !important;
}

/* Placeholder */
.contact-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Focus */
.contact-section .form-control:focus {
  color: var(--brand-cream) !important;
  -webkit-text-fill-color: var(--brand-cream) !important;
  border-color: var(--brand-rust) !important;
  box-shadow: none !important;
}

.alert-style {
margin-top: 20px;
align-self: center;
}

/* Style the container around reCAPTCHA */
.recaptcha-wrapper {
  margin-top: 1.5rem;          /* space above */
  padding: 1rem;               /* optional padding */
  background-color: rgba(0,0,0,0.2); /* subtle background */
  border-radius: 6px;          /* smooth corners */
  display: inline-block;       /* shrink to fit */
}
