/* ================= VARIABLES ================= */
:root{
  --cream:#f7f4ee;
  --cream-dark:#efe9de;
  --ink:#1c1c1c;
  --navy:#171a22;
  --gold:#b7935a;
  --gold-light:#cfa96a;
  --gray:#6b6b66;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --maxw: 1240px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:#f8f6f2;
  font-weight:300;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;background:none;border:none;}

.page-id-33538 .elementor-location-header ,  .page-id-33541 .elementor-location-header{
    display: none; 
}

/* =========================================
           HEADER CONTAINER & ELEMENTOR SPACING
           ========================================= */
        .site-header {
            position: fixed!important;
            top: 0;
            left: 0;
            width: 100%;
            width: 100% !important;
            min-width: 100%;
            height: 85px;
            background-color: #ffffff;
            z-index: 9999;
          /*  box-shadow: 0 2px 15px rgba(0,0,0,0.05);*/
            transition: background-color .3s ease,
            box-shadow .3s ease,
            transform .3s ease;

            transform: translateZ(0);
            will-change: transform;
            backface-visibility:hidden;
        }

        /* Matches Elementor's e-con-inner (Boxed layout) */
        .max-width-header {
            width: 100%;
            max-width: 1200px; /* Elementor default is usually 1140px or 1200px */
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px; /* Safe space on left/right for smaller screens */
        }

        .header-logo img {
            width: 195px;
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* =========================================
           DESKTOP NAVIGATION
           ========================================= */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 25px;
            height: 100%;
        }

        .main-nav > li {
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
        }

        .main-nav > li > a {
            font-size: 15px;
            font-weight:500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0f0f0f;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 0;
            position: relative;
            font-family: 'Source Sans 3', Sans-serif;
        }

        .main-nav a i {
            font-size: 12px;
            margin-top: -2px;
            transition: transform 0.3s ease;
        }

        .main-nav > li > a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #555;
            transition: width 0.3s ease;
        }

        .main-nav > li:hover > a::after {
            width: 100%;
        }

        /* =========================================
           DROPDOWN MENU STYLING (DESKTOP)
           ========================================= */
        .dropdown-menu {
            position: absolute;
            top: 51px;
            left: 0;
            background-color: #ffffff;
            min-width: 260px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            padding: 15px 0;
            color: #000;
            font-family: 'Source Sans 3', Sans-serif;
        }

        @media (min-width: 851px) {
            .main-nav > li:hover > .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .dropdown-menu > li:hover > .nested-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
            }
        }

        .dropdown-menu > li {
            position: relative;
        }

        .dropdown-menu > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #0f0f0f;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .dropdown-menu > li > a:hover {
            background-color: #f4f1e8;
            color: #000;
        }

        .dropdown-menu .nested-dropdown {
            top: 0;
            left: 100%;
            transform: translateX(10px);
        }

        /* =========================================
           CONTACT BUTTON
           ========================================= */
        .header-cta {
            display: flex;
            align-items: center;
        }

        .btn-gold {
            background: #ddc97d !important;
            color: #000 !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            transition: background-color 0.3s ease;
            font-size: 14px;
            padding: 8px 30px 8px 30px;
        }

        .btn-gold:hover {
              background: #ddc97d;
        }

        /* =========================================
           MOBILE TOGGLE (HAMBURGER)
           ========================================= */
          button.mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
            color: #000;
            padding: 0;
        }

        #mobileToggle:hover{
            background:#fff;
        }

        #mobileToggle i{
            color: #000;
        }
  

        /* =========================================
           RESPONSIVE (TABLET & MOBILE)
           ========================================= */
        @media (max-width: 1100px) {
       /*     .main-nav > li > a {
                font-size: 12px;
            }*/
            .main-nav {
                gap: 15px;
            }
        }

        @media (max-width: 850px) {
            .main-nav, .header-cta {
                display: none;
            }
            button.mobile-toggle {
                display: block;
            }

            .main-nav.mobile-active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #fff;
                padding: 20px 0;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                align-items: flex-start;
                gap: 0;
                overflow-y: auto;
            }

            .main-nav.mobile-active > li {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                height: auto;
            }

            .main-nav.mobile-active > li > a {
                padding: 15px 30px;
                width: 100%;
                border-bottom: 1px solid #eee;
                justify-content: space-between;
            }

            .main-nav.mobile-active .dropdown-menu {
                position: static;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none; 
                padding: 0;
                width: 100%;
                background-color: #f9f9f9;
            }

            .main-nav.mobile-active .nested-dropdown {
                background-color: #f1f1f1;
            }
            
            .main-nav.mobile-active .nested-dropdown > li > a {
                padding-left: 45px; 
            }

            .main-nav.mobile-active li.open > .dropdown-menu {
                display: block;
            }
            
            .main-nav.mobile-active li.open > a > i {
                transform: rotate(180deg);
            }
        }


.section-title{
font-family: "Extradicta", "Times New Roman", serif;
font-weight: 400;
font-size: 70px;
line-height: 79px;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
margin-bottom: 20px;
}

.section-title.left{text-align:left;margin-bottom:0;}

#venues .section-title{
 max-width: 55%;
}

.eyebrow{
    font-family: Cormorant;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: #9C7D3C;
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 34px;
  font-size:12px;
  letter-spacing:2px;
  font-weight:500;
  border-radius:2px;
  transition:all .25s ease;
  text-align:center;
}
.btn-gold{
  background:var(--gold);
  color:#fff;
}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{
border-radius: 45px;
border-width: 1.5px;
padding-top: 15px;
padding-right: 40px;
padding-bottom: 15px;
padding-left: 40px;
border: 1.5px solid #FFFFFF;
font-family: Source Sans 3;
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: normal;
letter-spacing: 31%;
vertical-align: middle;
text-transform: uppercase;
color: #fff!important;
}
.btn-outline:hover{background:rgba(255,255,255,.15);}
.btn-gold-outline{
    border-radius: 20px;
    padding-top: 8px;
    padding-right: 35px;
    padding-bottom: 8px;
    padding-left: 35px;
    font-family: Source Sans 3;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #100303;
    background: #DDC97D;
}
.btn-gold-outline:hover{background:#DDC97D;}

/* ================= HEADER ================= */
.site-header{
  position:fixed;top:0;left:0;right:0;
  z-index:1000;
  padding:22px 0;
  transition:background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{
  background:#fff;
/*  padding:12px 0;*/
    box-shadow: 0 2px 14px rgb(0 0 0 / 2%);
}

.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
}
.logo{
  display:flex;flex-direction:column;align-items:flex-start;color:#fff;
}
.logo-main{
  font-family:var(--serif);
  font-size:22px;
  letter-spacing:4px;
  font-weight:600;
  line-height:1;
}
.logo-sub{
  font-size:9px;
  letter-spacing:3px;
  margin-top:4px;
  font-weight:400;
}
.main-nav{
  display:flex;
  gap:32px;
}
.main-nav a{
  color:#fff;
  font-size:11px;
  letter-spacing:1.5px;
  font-weight:400;
  position:relative;
  padding-bottom:4px;
}
/*.main-nav a::after{
  content:'';
  position:absolute;left:0;bottom:0;
  width:0;height:1px;background:var(--gold-light);
  transition:width .25s ease;
}*/
.main-nav a:hover::after{width:100%;}
.nav-cta{padding:12px 30px;}
.hamburger{display:none;flex-direction:column;gap:5px;}
.hamburger span{width:24px;height:2px;background:#fff;display:block;}

/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    /*min-height: 888px;*/
    height: 100%;
    overflow: hidden;
    top: 45px;
/*    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    top: 56px;*/
}

.banner-top-side{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*.hero-bg{
  position:absolute;inset:0;
  background-image:url('./image/Banner.png');
  background-size:cover;
  background-position:center 30%;
}*/

.hero-overlay{
  position:absolute;
  inset:0;
  background:#00000042;
}

.hero-content{
    position: absolute;
    z-index: 2;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -32%);
}

.hero-eyebrow{
font-family: Cormorant;
font-weight: 700;
font-style: Bold;
font-size: 26px;
line-height: normal;
letter-spacing: 10%;
text-align: center;
text-transform: uppercase;
margin-bottom: 0;

}
.hero-title{
  font-family:var(--serif);
  font-size:clamp(70px,14vw,150px);
  font-weight:600;
  letter-spacing:8px;
  margin-bottom:34px;
  line-height:1;
}

/* ================= PARTNER STRIP ================= */
.partner-strip{
  background:#fff;
  padding:26px 35px 26px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  border-top:1px solid rgba(154,124,60,.15);
  border-bottom:1px solid rgba(154,124,60,.15);
}

.partner-inner{
  max-width:1070px;
}

.partner-strip .partner-inner .owl-stage .owl-item .item img{
    width: auto !important;
    max-width: 140px !important;
    height:65px!important;
    margin: 0 auto;
    object-fit: contain;
}

.partner-inner .owl-stage{
    transform: translate3d(0,0,0);
    will-change: transform;
    backface-visibility: hidden;
transition-timing-function: linear !important;
}
.partner-inner .owl-item{
    transform: translateZ(0);
}
.award-seal{
    position: absolute;
    right: 44px;
    top: -68px;
}
.seal-circle{
  width:64px;height:64px;
  border-radius:50%;
  border:1px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:8px;
  text-align:center;
  letter-spacing:.5px;
  color:var(--gold);
  font-weight:600;
  line-height:1.3;
}

/* ================= INTRO ================= */
.intro{
  max-width:922px;
  margin:0 auto;
  padding:80px 0px 80px;
  text-align:center;
}
.intro-text{
font-family: Cormorant;
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 142%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}
.intro-text strong{font-weight:600;color:var(--ink);}

/* ================= VENUE SLIDER ================= */
.venues-slider-section{
  padding:10px 0 110px;
}
.venues-slider-head{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px 24px;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-arrows{
    display: flex;
    gap: 14px;
    align-items: center;
    position: absolute;
    right: 45px;
    bottom: 25px;
}

.arrow-btn{
  width:58px;
  height:58px;
  border:1px solid #d8d2c4;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:0 4px 12px rgba(28,28,28,0.04);
  transition:all .2s ease;
}
.arrow-btn svg{
  width:24px;
  height:18px;
}
.arrow-btn:hover{background:var(--gold);border-color:var(--gold);} 
.arrow-btn:hover svg path{fill:#fff;}
.venues-track-wrap{
    /*padding: 0 40px; */
    width: 97%;
    margin-left: auto;
}
.venues-track{
  display:flex;
  gap:25px;
 /*   overflow-x: auto;*/
/*    overflow-y: hidden;*/

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
    -ms-overflow-style: none;
}
.venues-track-wrap::-webkit-scrollbar{
    display: none;
}
.venue-card{
  flex:0 0 calc(25% - 19.5px);
  min-width:280px;
}

#venuePrev,#venueNext{
    cursor: pointer;
}

.venue-img{
  width:100%;
  height: 420px;
  background-size:cover;
  background-position:center;
  margin-bottom:15px;
  scroll-snap-align:start;
  position: relative;
  overflow: hidden;
}

.whitelogos-align{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -25%);
    z-index: 1;
    width: 160px!important;
    object-fit: contain;
    height: 100px;
}

/*#venues .owl-carousel .owl-stage-outer{
        overflow: inherit;
}*/

.venue-card .venue-img:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 43%; /* Adjust height as needed */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.venue-card h3{
font-family: "Extradicta", "Times New Roman", serif;
font-weight: 400;
font-size: 23px!important;
line-height: 32px;
letter-spacing: 0%;
text-transform: uppercase;
margin-bottom: 12px;
}

.venue-card p{
     font-family:Cormorant;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.21;
    margin: 0;
    /* 3 line ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

/* ================= RECOGNIZED ================= */
.recognized{
  background:#FBF8F3;
  padding:60px 30px;
  text-align:center;
}
.badge-row{
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  gap:65px;
  justify-content:center;
  margin-top:46px;
}

.badge-item{
  width:100px;height:100px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ded7c6;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;
  letter-spacing:1px;
  font-weight:600;
  text-align:center;
  line-height:1.4;
  color:#3a3a35;
}
.badge-item small{font-weight:400;font-size:8px;letter-spacing:.5px;}


.badge-row .item{
    display:flex;
    justify-content:center;
    align-items:center;
    height:170px;
}

.badge-row .item img{
    max-width:120px;
    max-height:120px;
    width:auto;
    height:auto;
}

.badge-row .owl-stage{
    display:flex;
    align-items:center;
    transition-timing-function:linear !important;
}



/* ================= CELEBRATE ================= */
.celebrate{
  max-width:760px;
  margin:0 auto;
  padding:80px 30px;
  text-align:center;
}
.celebrate-text{
    font-family: Cormorant;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 142%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #000;
}

/* ================= FEATURE BLOCKS ================= */
.feature{
    display:grid;
    grid-template-columns:50% 50%;
    width:100%;
    min-height:760px;
    margin:0;
    padding:0;
    background:#fff;
    overflow:hidden;
}
.feature.reverse{grid-template-columns:50% 50%;}
.feature.reverse .feature-text{order:2;}
.feature.reverse .feature-media{order:1;}
.feature-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:0 8vw;
    background:#fff;
}

.feature-title{
    font-family:"Extradicta","Times New Roman",serif;
    font-weight:400;
    font-size:65px!important;
    line-height:1.05;
    text-transform:uppercase;
    color:#100303;
    max-width:470px;
    margin:10px 0 35px;
}
.feature-media{position:relative;width:100%;height:760px;overflow:hidden;}

.feature-media:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 39%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-img{position:absolute;inset:0;background-size:cover;background-position:center;transition:opacity .8s ease-in-out;}
.feature-slider .feature-img,
.feature-slider-2 .feature-img, 
.feature-slider-3 .feature-img
{
    width:100%;
    height:760px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}


.feature-slider .owl-dots,
.feature-slider-2 .owl-dots,
.feature-slider-3 .owl-dots{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    z-index:10;
}

.feature-slider .owl-dot,
.feature-slider-2 .owl-dot,
.feature-slider-3 .owl-dot{
    margin:0 !important;
}

.feature-slider .owl-dot span,
.feature-slider-2 .owl-dot span,
.feature-slider-3 .owl-dot span{
    width:12px;
    height:12px;
    margin:0 !important;
    display:block;
    border-radius:50%;
    border:2px solid #fff;
    background:transparent;
    transition:.35s;
    box-sizing:border-box;
}

.feature-slider .owl-dot.active span,
.feature-slider-2 .owl-dot.active span,
.feature-slider-3 .owl-dot.active span{
    background:#fff;
    border-color:#fff;
}

.feature-slider .owl-dot:hover span,
.feature-slider-2 .owl-dot:hover span,
.feature-slider-3 .owl-dot:hover span{
    background:#fff;
}


.feature-img::before{
content:"";position:absolute;inset:0;
background: linear-gradient(to top, rgb(0 0 0 / 92%) 0%, rgba(0, 0, 0, .15) 35%, rgba(0, 0, 0, 0) 70%);
}
.feature-caption{
position:absolute;left:50%;bottom:75px;transform:translateX(-50%);
text-align:center;color:#fff;z-index:2;
font-family:"Cormorant Garamond",serif;
font-size:52px;line-height:1.05;font-weight:400;letter-spacing:2px;text-transform:uppercase;
}
.feature-caption small{
display:block;margin-top:8px;font-family:"Source Sans 3",sans-serif;
font-size:16px;letter-spacing:5px;
}

.btn-gold-outline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0px 39px;
    background: #DDC97D;
    color: #111;
    border-radius: 30px;
    font: 600 13px "Source Sans 3", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
}

.dots{position:absolute;left:50%;bottom:30px;transform:translateX(-50%);display:flex;gap:8px;z-index: 1; cursor: pointer;}
.dot{width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2.55px solid #FFFFFFBF;}
.dot.active{background:#fff;}

@media(max-width:991px){
/*.feature{grid-template-columns:1fr!important;}*/
.feature-text{padding:70px 40px;text-align:left;}
.feature-title{font-size:48px!important;}
.feature-media{height:600px;}
}


/* ===========================
   CONNECT SECTION
=========================== */

.connect{
    background:#F6F2E8;
    display:grid;
    grid-template-columns:45% 55%;
    align-items:flex-start;
    gap:70px;

    padding:110px 8%;
}

.connect-title{
    font-family:"Extradicta","Cormorant Garamond",serif;
    font-size:92px!important;
    font-weight:400;
    line-height:.95!important;
    color:#111;
    text-transform:uppercase;
}

.connect-form-card{
    width:100%;
    max-width:620px;
    background:#fff;
    border:1px solid #DDC97D;
    border-radius:27.16px;
    padding:40px 40px;
    box-shadow:none;
}


/* ===========================
   STEPS
=========================== */

.step-indicator{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    position:relative;
    margin-bottom:35px;
}

.step-indicator:before{
content: "";
    position: absolute;
    top: 17px;
    left: 88px;
    right: 0;
    height: 1px;
    background: #DDC97D;
    width: 28%;
}

.step-indicator .step:nth-child(2)::before{
    content: "";
    position: absolute;
    top: 17px;
    left: 57%;
    height: 1px;
    background: #DDC97D;
    width: 27%;
}


.step{
font-family: 'Source Sans 3'!important;
font-weight: 600;
font-style: SemiBold;
font-size: 16px;
line-height: 150%;
letter-spacing: 0%;
vertical-align: middle;
color: #9C7D3C;
z-index: 1;
text-align: center;
}


.step span{
    width: 35px;
    height: 35px;
    opacity: 1;
    border-radius: 500px;
    border-width: 1.32px;
    background: #FBF8F3;
    border: 1.32px solid #9F8E67;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family:'Source Sans 3'!important;
    font-weight: 700;
    font-style: Bold;
    font-size: 21px;
    leading-trim: CAP_HEIGHT;
    line-height: 155%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #9A7D3C;
    text-align: center;
    margin: 0px auto 7px;
}


/* ===========================
   HEADING
=========================== */

.form-heading{
    font-family: 'Cormorant';
    font-weight: 700;
    font-size: 28px !important;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #515151 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize !important;
}



/* ===========================
   FORM
=========================== */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{

    margin-bottom:18px;
}

.form-group label{
font-family: 'Source Sans 3';
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0%;
vertical-align: middle;
color: #000000;
}

.form-group input{
    width:100%;
    height:43px;
    border: 1px solid #E5E5E5!important;
    border-radius:5px!important;
    background: #F5F5F5;
    padding:0 14px;
    font-size:14px;
    transition:.3s;
}

.form-group input:focus{

    outline:none;

    border-color:#CDAA52;

    background:#fff;
}


/* ===========================
   BUTTON
=========================== */

button.form-submit{

    width:150px;

    height:48px;

    margin-top:15px;
    margin-left:auto;

    display:flex;

    align-items:center;
    justify-content:center;

    border:none;

    border-radius:30px;

    background:#DDC97D;

    color:#111;

    font-size:16px;

    font-weight:600;

    letter-spacing:1px;
}

.form-submit:hover{

    background:#C8AE5B;
}


/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

.connect{
    grid-template-columns:1fr;
    gap:50px;

}

.connect-title{

    font-size:62px;
}

.connect-form-card{

    margin:auto;
}

}



@media(max-width:767px){
.feature-media:before{
    height: 26%;
}
    
    .header-logo img{
      width: 130px;
    }
    .venue-card{
        min-width: auto;
    }

    .site-header{
        height: 60px;
    }

.feature-slider .owl-dots,
.feature-slider-2 .owl-dots,
.feature-slider-3 .owl-dots{
    bottom:357px;
}
.connect{
    gap:15px;
    padding:70px 20px;
}

.connect-title{
    font-size:46px!important;
}

.connect-form-card{

    padding:30px 20px;
}

.form-row{

   /* grid-template-columns:1fr;*/
}

.form-heading{

    font-size:24px!important;
}

.step{
 font-size: 13px;
}

.step-indicator:before {
    top: 17px;
    left: 74px;
    width: 16%;
}

.step-indicator .step:nth-child(2)::before {
    top: 17px;
    left: 61%;
    width: 15%;
}

}

/* ================= TESTIMONIAL ================= */

/*=====================================
 TESTIMONIAL
=====================================*/

.testimonial{
    display:grid;
    grid-template-columns:50% 50%;
    width: calc(100% - 5px);
    min-height:720px;
    background:#fff;
    overflow:hidden;
}

.testimonial-img{
    width:100%;
    min-height:720px;
    background-size:cover;
    background-position:center center;
}

.testimonial-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:80px 70px;
    text-align:center;
    background:#fff;
    position: relative;
}

.quote-mark{

    font-family:"Cormorant Garamond",serif;

    font-size:90px;

    color:#D9BF67;

    line-height:1;

    margin-bottom:0px;

    font-weight:600;
}

.testimonial-text{

font-family: Cormorant;
font-weight: 400;
font-style: Regular;
font-size: 25px;
leading-trim: NONE;
line-height: 148%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}

.testimonial-name{

font-family: 'Source Sans 3';
font-weight: 700;
font-style: Bold;
font-size: 28px;
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
text-transform: uppercase;

}

/* Testimonial Owl Dots */
.testimonial-slider .owl-dots{
    margin-top:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.testimonial-slider .owl-dot{
    margin:0 !important;
}

.testimonial-slider .owl-dot span{
    width:8px;
    height:8px;
    margin:0 !important;
    display:block;
    border-radius:50px;
    background:#D8C79B;   /* Inactive */
    transition:all .35s ease;
}

/* Active Dot */
.testimonial-slider .owl-dot.active span{
    width:26px;
    height:8px;
    border-radius:50px;
    background:#B18A3B;   /* Gold */
}

/* Hover */
.testimonial-slider .owl-dot:hover span{
    background:#B18A3B;
}




/*=====================================
 Responsive
=====================================*/

@media(max-width:991px){

.testimonial{
    display: block;
    grid-template-columns:1fr;
}

.testimonial-img{

    min-height:520px;
}

.testimonial-content{

    padding:70px 40px;
}

}

@media(max-width:767px){

.testimonial-img{

    min-height:380px;
}

.testimonial-content{

    padding:55px 25px;
}

.quote-mark{

    font-size:65px;
}

.testimonial-text{

    font-size:20px;

    line-height:1.6;
}

.testimonial-name{

    font-size:18px;
}
}


/* ================= CATERING ================= */

.catering{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    min-height:720px;
    background:#fff;
    overflow:hidden;
    gap: 5px;
}

/* LEFT SIDE */

.catering-left{
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}


.catering-text{
    min-height:700px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px;
    position:relative;
    color:#fff;
}

.catering-text:before{
  content: '';
    position:absolute;
    inset:0;
    background: #00000063;
}

.catering-content{
    position:relative;
    z-index:2;
    max-width:520px;
    margin-left:80px;
    color:#fff;
}

.catering-content .eyebrow{
    color:#fff;
    font-size:24px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
    font-family:"Cormorant Garamond",serif;
}


.request-proposal-mobile{
    display: none;
}

.herban-content-hero{
     transform: translate(-50%, -50%);
}

.catering-title{
    font-family: Extradicta;
    color:#fff!important;
    font-size:72px;
    line-height:.95;
    font-weight:400;
    margin-bottom:30px;
}

.catering-description{
    font-family: 'Cormorant';
    font-weight: 500;
    font-style: SemiBold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 122%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 25px;

}

.catering .btn-gold-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:190px;
    height:50px;
    border-radius:40px;
    background:#DDC97D;
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.catering .btn-gold-outline:hover{
    background:#c9ae58;
}

/* RIGHT SIDE */

.catering-right{
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.catering-overlay-light{
    position:absolute;
    inset:0;
    background:#00000029;
}

.herban-logo{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.herban-logo h2{
    margin:0;
    font-size:56px;
    font-family:"Cormorant Garamond",serif;
    font-weight:700;
    letter-spacing:2px;
}

.herban-logo span{
    display:block;
    margin-top:10px;
    letter-spacing:4px;
    font-size:14px;
    text-transform:uppercase;
}

/* TABLET */

@media (max-width:992px){

.catering{
    grid-template-columns:1fr;
}

.catering-left,
.catering-right{
    min-height:500px;
}

.catering-content{
    margin:60px;
}

}

/* MOBILE */

@media (max-width:768px){

.catering-left,
.catering-right{
    min-height:420px;
}

.catering-content{
    margin:35px;
}

.catering-title{
    font-size:44px;
}

.catering-description{
    font-size:17px;
}

.herban-logo h2{
    font-size:36px;
}

.herban-logo span{
    font-size:12px;
}

.catering .btn-gold-outline{
    width:170px;
    height:46px;
}

}


.catering-slider{
    position:relative;
}

.catering-slider .owl-nav{
    position: absolute;
    bottom: -65px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 100;}

.catering-slider .owl-nav button{
    width:48px;
    height:48px;

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

    background:transparent !important;
    border:transparent !important;
    border-radius:50%;
    transition:.3s;
}

.catering-slider .owl-nav button:hover{
    background:transparent!important;
}

.catering-slider .owl-nav button:hover svg path{
    fill:#b7935a;
}

.catering-slider .owl-nav button span{
    display:none;
}

.catering-slider .owl-nav button:focus{
    outline:none;
}

@media(max-width:768px){

    .catering-slider .owl-nav{
        left:50%;
        transform:translateX(-50%);
        bottom:-50px;
        right: auto;
    }

}

/*=========================================
FAQ SECTION
=========================================*/

.faq-section{
    max-width:1400px;
    margin:0 auto;
    padding:80px 60px;
}

/*=========================================
Heading
=========================================*/

.faq-heading{
    text-align:center;
    margin-bottom:80px;
}

.faq-subtitle{
font-family: Cormorant;
font-weight: 700;
font-style: Bold;
font-size: 26px;
leading-trim: CAP_HEIGHT;
line-height: normal;
letter-spacing: 10%;
text-align: center;
text-transform: uppercase;
color: #9C7D3C;
}

.faq-heading h2{
font-family: Extradicta;
font-weight: 400;
font-style: Regular;
font-size: 70px;
leading-trim: CAP_HEIGHT;
line-height: 81px;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
color: #000000;
}

/*=========================================
Columns
=========================================*/

.faq-wrapper{
 display: grid;
    grid-template-columns: 450px 1fr;
    gap: 135px;
    align-items: start;
}

/*=========================================
Left
=========================================*/

.faq-left{
    padding-top:8px;
}

.faq-left p{
font-family: Cormorant;
font-weight: 400;
font-style: Regular;
font-size: 23px;
leading-trim: NONE;
line-height: 139%;
letter-spacing: 0%;
vertical-align: middle;
color: #000000;

}

/*=========================================
Right
=========================================*/

.faq-right{
    width:100%;
}

.faq-item{
    border-bottom:1px solid #E8E0D6;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:5px 0;
    cursor:pointer;
    user-select:none;
}

.faq-question span:first-child{
    font-family: 'Cormorant';
    font-size:24px;
    line-height:1.25;
    font-weight:700;
    color:#9C7D3C;
}

.faq-question .icon{
    font-size:34px;
    color:#B89252;
    width:40px;
    text-align:right;
    flex-shrink:0;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.35s ease,
        visibility 0.35s ease,
        padding 0.35s ease;
    padding: 0;
}

.faq-answer p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:#555;
    font-family:"Source Sans 3",sans-serif;
    max-width:90%;
    font-weight: 400;
}

.faq-item.active .faq-answer{
    /*max-height: 300px!important; */
    opacity: 1;
    visibility: visible;
    padding: 0 0 20px;
    margin-bottom: 15px;
}

.faq-answer p{
    margin: 0;
    transform: translateY(-8px);
    transition: transform .35s ease;
}

.faq-item.active .faq-answer p{
    transform: translateY(0);
}
/*=========================================
Hover
=========================================*/

.faq-question:hover span:first-child,
.faq-question:hover .icon{
    color:#9b743d;
}

/*=========================================
Responsive
=========================================*/

@media (max-width:991px){

.faq-section{
    padding:80px 25px;
}

.faq-heading{
    margin-bottom:50px;
}

.faq-heading h2{
    font-size:48px;
}

.faq-wrapper{
    grid-template-columns:1fr;
    gap:45px;
}

.faq-left{
    max-width:100%;
}

.faq-left p{
    font-size:17px;
}

.faq-question{
    padding:22px 0;
}

.faq-question span:first-child{
    font-size:22px;
}

.faq-question .icon{
    font-size:26px;
}

.faq-answer p{
    font-size:16px;
}

}

@media (max-width:575px){

.faq-heading h2{
        font-size: 40px;
        line-height: 45px;
}

.faq-question span:first-child{
    font-size:19px;
}

.faq-question .icon{
    font-size:22px;
}

}
/* ================= INSTAGRAM ================= */
.instagram{padding:0 0 0px;text-align:center;}
.instagram .section-title{margin-bottom:40px;}
.insta-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:4px;
}
.insta-img{
  aspect-ratio:1/1;
  background-size:cover;
  background-position:center;
}

/* ================= FOOTER ================= */
.site-footer{
    background: #F4F1E9;
    color: #000;
    padding: 70px 40px 30px;
}
.footer-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-logo{display:flex;flex-direction:column;}
.footer-nav{display:flex;gap:26px;flex-wrap:wrap;}
.footer-nav a{font-size:11px;letter-spacing:1.5px;}
.footer-social{display:flex;gap:16px;}
.footer-social a{
  width:34px;height:34px;border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;
}
.footer-copy{
  text-align:center;
  font-size:11px;
  letter-spacing:1px;
  color:rgba(255,255,255,.5);
  margin-top:26px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
  .faq{grid-template-columns:1fr;}
  .catering{grid-template-columns:1fr;gap:5px;}
  .connect{grid-template-columns:1fr;text-align:left;}
  .connect-form-card{margin:0 auto;}
}

@media(max-width:900px){
  .main-nav{display:none;}
  .hamburger{display:flex;}
  .nav-cta{display:none;}
  /*.feature{grid-template-columns:1fr!important;}*/

  .feature-title{margin:0 auto 30px;}
  .testimonial{grid-template-columns:1fr;}
  .insta-grid{grid-template-columns:repeat(3,1fr);}
  .venue-card{flex:0 0 calc(50% - 13px);}
}

@media(max-width:600px){
  .header-inner{padding:0 20px;}
  .hero-title{letter-spacing:4px;}
  .partner-inner{gap:10px;}
     .award-seal {
        position: absolute;
        right: 10px;
        top: -63px;
        width: 75px;
    }
    .venues-track-wrap {
    padding: 0 15px;
    width: 100%;}
  .badge-item{width:80px;height:80px;font-size:8px;}
  .venue-card{flex:0 0 85%;}
  .faq-q{font-size:13.5px;}
 /* .form-row{grid-template-columns:1fr;}*/
  .connect-title{font-size:40px;}
  .insta-grid{grid-template-columns:repeat(2,1fr);}
  .footer-inner{flex-direction:column;text-align:center;}
}


@media(max-width:767px){

.section-title{
    font-size: 40px;
}

.eyebrow{
    font-size:18px;
}

.request-proposal-mobile{
        display: block;
        background: #ddc97d;
        color: #000 !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 30px;
        transition: background-color 0.3s ease;
        font-size: 16px;
        padding: 8px 30px 8px 30px;
        max-width: 100%;
        position: fixed;
        z-index: 3;
        bottom: 16px;
        font-family: 'Source Sans 3';
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        text-align: center;
}

.feature{grid-template-columns:1fr!important;}
.hero{
        min-height: auto;
        height: 62vh;
        background-position: center center;
}
.hero-content{
        width: 100%;
        transform: translate(-50%, -21%);
}

.hero-eyebrow{
    font-size: 16px;
    margin-bottom: 0px;
}

.btn-outline{
padding-top: 10px;
        padding-right: 30px;
        padding-bottom: 10px;
        padding-left: 30px;
        margin-top: 12px;
    }


    .partner-inner{
        display:flex;
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;
        gap:30px;
        padding:0 20px 10px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .partner-inner::-webkit-scrollbar{
        display:none;
    }
.partner-strip{
    padding: 15px 10px 10px;
}

.partner-inner img {
    width: 80px;
    align-items: center;
}

.section-title{
        line-height: normal;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        color: #000;
}

.intro{
 padding: 36px 0px 60px;
}

.intro-text{
        font-size: 18px;
        max-width: 90%;
        margin: 0px auto; 
}

#venues .section-title {
    max-width: 100%;
    margin-bottom: 26px;

}
.slider-arrows{
       right: 6px;
    bottom: 5px; 
}
.venue-img {
    width: 100%;
    height: 340px;
}
.venues-slider-section{
    padding: 10px 0 50px;
}

.recognized{
 padding: 60px 5px;
}


.badge-row img
 {
    width: 77px;
    height: 80px;
    object-fit: contain;
}
.badge-row{
    gap: 7px;
}

.celebrate{
       padding: 40px 30px; 
}

  .feature-text{order:2!important;
    padding:40px 10px;}
  .feature-media{order:1!important;}

.feature-title{font-size:34px!important;}
.feature-media{height:420px;}
.feature-caption{font-size:34px;}
.feature-caption small{font-size:13px;}
.feature-text{padding:50px 25px;}

.catering-text{
     min-height: 540px;  
     padding: 30px; 
}
.catering-content .eyebrow{
        font-size: 13px;
        margin-bottom: 10px;
}
    .catering-content {
        margin: 20px;
        text-align: center;
    }

}

@media screen and (min-width: 992px) and (max-width: 1199px) {

.catering-text, .catering-right {
    min-height: 465px;}
 
}

@media screen and (min-width: 768px) and (max-width: 991px) {
.award-seal {
    top: -94px;
}


.hero-content{
    width: 61%;
}


.hero{
    background-position: center center;
    min-height: 610px;
    height: 60vh;
}

}


/* =========================================
           INSTAGRAM SECTION
           ========================================= */
        .instagram-section {
            text-align: center;
            padding: 0px 0 0;
        }

        .instagram-section h2 {
            font-family: 'Extradicta', sans-serif;
            font-size: 50px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 40px;
            color: #111;
        }

        .insta-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            width: 100%;
        }

        .insta-grid a {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
        }

        .insta-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, opacity 0.3s ease;
        }

        .insta-grid a:hover img {
            transform: scale(1.05);
            opacity: 0.85;
        }

        /* =========================================
           FOOTER SECTION
           ========================================= */
        .site-footer {
            padding: 50px 5%;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
                margin: 20px 0;
        }

        /* Left Side: Logo & Navigation */
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-logo img {
            width: 280px;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .footer-nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #333;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #cbb26a;
        }

        /* Right Side: Newsletter Form */
        .footer-right {
            display: flex;
            justify-content: flex-end;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .newsletter-form input[type="email"] {
            width: 250px;
            padding: 10px 20px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 16px;
            color: #333;
            background-color: #f8f8f8;
            border: 1px solid #ccc;
            border-radius: 30px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        button.btn-subscribe {
            background: #ddc97d !important;
            color: #000 !important;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            transition: background-color 0.3s ease;
            font-size: 14px !important;
            padding: 11px 30px 8px 30px !important;
            border: none;
        }

        .newsletter-form input[type="email"]::placeholder {
            color: #888;
        }

        .newsletter-form input[type="email"]:focus {
            border-color: #cbb26a;
        }


        .footer-divider {
        width: 100%;
        height: 1px;
        background-color: #111; /* Dark line across the screen */
        margin-bottom: 10px;
       }

       .footer-bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }

    .copyright-text {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #333;
            font-family: "Source Sans 3", Sans-serif;
    }

    .social-icons {
        display: flex;
        gap: 20px;
    }

    .social-icons a {
        color: #111;
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #ddc97d; /* Gold hover effect */
    }


@media screen and (min-width: 1280px) and (max-width: 1280px) {
    .partner-inner {
        max-width: 965px;
    }
}

        /* =========================================
           RESPONSIVE (TABLET & MOBILE)
           ========================================= */
        
        /* Tablet Breakpoint */
        @media (max-width: 1024px) {
            .insta-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .instagram-section h2 {
                font-size: 32px;
            }
        }

        /* Mobile Breakpoint */
        @media (max-width: 768px) {
            .instagram-section {
                padding: 40px 0 0;
            }
            
            .instagram-section h2 {
                font-size: 26px;
                padding: 0 15px;
            }

            .insta-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .site-footer {
                padding: 50px 5%;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 50px;
                padding-bottom: 10px;
            }

            .footer-left {
                align-items: center;
            }

            .footer-nav {
                justify-content: center;
                gap: 15px 25px;
            }

            .footer-right {
                width: 100%;
                justify-content: center;
            }

            .newsletter-form {
                align-items: center;
                width: 100%;
            }

            .newsletter-form input[type="email"] {
                width: 100%;
                max-width: 320px;
                text-align: center;
            }
        }

.elementor.elementor-location-header {
        /*margin-bottom: 92px;*/
}














