/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", sans-serif;
    background: #f4f0e8;
    color: #24211d;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   NAVIGATION
========================= */

header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(25, 23, 20, 0.96);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(201, 167, 109, 0.25);

    transition: 0.3s ease;

}


.navbar {

    max-width: 1400px;

    margin: auto;

    padding: 22px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #ffffff;

}


.logo span {

    display: block;

    color: #a7834a;

    font-size: 18px;

    letter-spacing: 8px;

    margin-left: 2px;

}


.nav-links a {

    color: #f4f0e8;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;

}


.nav-links a {

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;

}


.nav-links a:hover {

    color: #a7834a;

}


.nav-button {

    border: 1px solid #a7834a;

    color: white;

    padding: 12px 24px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;

}


.nav-button:hover {

    background: #a7834a;

    color: white;

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    background:

        linear-gradient(
            120deg,
            rgba(25, 22, 18, 0.95),
            rgba(25, 22, 18, 0.65)
        ),

        radial-gradient(
            circle at 80% 30%,
            #665b4d,
            #201d19 70%
        );

    color: white;

    padding: 140px 10% 100px;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:

        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.08) 81px
        );

}


.hero-content {

    position: relative;

    max-width: 900px;

    z-index: 2;

}


.eyebrow {

    color: #c9a76d;

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: 600;

    margin-bottom: 25px;

}


.hero h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(65px, 10vw, 125px);

    font-weight: 600;

    line-height: 0.85;

}


.hero h1 span {

    display: block;

    color: #d6b477;

    font-style: italic;

}


.hero-text {

    max-width: 560px;

    margin-top: 35px;

    font-size: 18px;

    line-height: 1.8;

    color: #ded8ce;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 40px;

}


.btn {

    display: inline-block;

    padding: 17px 28px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: 0.3s;

}


.primary-btn {

    background: #b28b50;

    color: white;

}


.primary-btn:hover {

    transform: translateY(-4px);

    background: #c49b5d;

}


.secondary-btn {

    border: 1px solid rgba(255,255,255,0.4);

}


.secondary-btn:hover {

    border-color: #d6b477;

    color: #d6b477;

}


.hero-line {

    width: 100px;

    height: 1px;

    background: #b28b50;

    margin-top: 60px;

}


.hero-year {

    margin-top: 15px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #aaa096;

}


/* =========================
   GENERAL
========================= */

section {

    padding: 130px 10%;

}


.section-label {

    color: #a7834a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 6vw, 85px);

    font-weight: 600;

    line-height: 0.95;

}


h2 em {

    color: #a7834a;

}


/* =========================
   INTRO
========================= */

.intro {

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 100px;

    background: #f4f0e8;

}


.gold-line {

    display: block;

    width: 60px;

    height: 2px;

    background: #a7834a;

}


.intro-main p {

    margin-top: 30px;

    max-width: 650px;

    color: #6d665d;

    line-height: 1.9;

    font-size: 16px;

}


/* =========================
   VENUE
========================= */

.venue {

    background: #25221e;

    color: white;

}


.venue .section-label {

    color: #c9a76d;

}


.venue-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    margin-top: 70px;

}


.venue-card {

    background: #302c27;

    padding: 55px 45px;

    min-height: 350px;

    transition: 0.4s;

}


.venue-card:hover {

    background: #3a342d;

    transform: translateY(-8px);

}


.featured-card {

    background: #b28b50;

}


.featured-card:hover {

    background: #c49b5d;

}


.venue-number {

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    color: #c9a76d;

    margin-bottom: 70px;

}


.featured-card .venue-number {

    color: white;

}


.venue-card h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

    margin-bottom: 18px;

}


.venue-card p {

    color: #c4beb5;

    line-height: 1.8;

}


.featured-card p {

    color: white;

}


/* =========================
   STATEMENT
========================= */

.statement {

    background: #e8dfd1;

    text-align: center;

}


.statement-content {

    max-width: 1000px;

    margin: auto;

}


.quote-mark {

    font-family: "Cormorant Garamond", serif;

    color: #b28b50;

    font-size: 120px;

    line-height: 0.5;

}


.statement h2 {

    margin-top: 30px;

}


.statement h2 em {

    display: block;

}


.statement-line {

    display: block;

    width: 70px;

    height: 1px;

    background: #b28b50;

    margin: 40px auto 20px;

}


.statement p {

    font-size: 11px;

    letter-spacing: 4px;

    color: #8a7d6d;

}


/* =========================
   REVIEWS
========================= */

.reviews-section {

    background: #f4f0e8;

    text-align: center;

}


.reviews-heading {

    max-width: 850px;

    margin: auto;

}


.review-container {

    position: relative;

    width: 100%;

    max-width: 850px;

    min-height: 330px;

    margin: 70px auto 0;

}


.review-card {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 60px;

    opacity: 0;

    transform: translateY(20px);

    transition:

        opacity 0.8s ease,
        transform 0.8s ease;

    pointer-events: none;

}


.review-card.active {

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;

}


.stars {

    color: #b28b50;

    font-size: 25px;

    letter-spacing: 5px;

    margin-bottom: 30px;

}


.review-text {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(28px, 4vw, 45px);

    font-style: italic;

    line-height: 1.25;

    max-width: 750px;

}


.review-author {

    margin-top: 30px;

    color: #a7834a;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;

}


.review-dots {

    display: flex;

    justify-content: center;

    gap: 12px;

}


.dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #c7bcae;

    transition: 0.3s;

}


.dot.active {

    background: #a7834a;

    transform: scale(1.3);

}


/* =========================
   VISIT
========================= */

.visit {

    background: #25221e;

    color: white;

    text-align: center;

}


.visit-content {

    max-width: 750px;

    margin: auto;

}


.visit .section-label {

    color: #c9a76d;

}


.visit-content > p {

    margin: 30px auto;

    color: #c4beb5;

    line-height: 1.8;

}


.address {

    margin-top: 60px;

    padding-top: 30px;

    border-top: 1px solid #4b443c;

}


.address strong {

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    letter-spacing: 2px;

}


.address p {

    color: #aaa096;

    margin-top: 12px;

    line-height: 1.8;

}


/* =========================
   FOOTER
========================= */

footer {

    background: #191714;

    color: white;

    padding: 70px 10%;

    text-align: center;

}


.footer-logo {

    font-family: "Cormorant Garamond", serif;

    font-size: 35px;

    font-weight: 700;

    letter-spacing: 2px;

}


.footer-logo span {

    display: block;

    color: #b28b50;

    font-size: 20px;

    letter-spacing: 10px;

}


footer > p {

    margin-top: 20px;

    color: #81796f;

}


.copyright {

    margin-top: 40px;

    font-size: 11px;

}


/* =========================
   DEMO NOTICE
========================= */

.demo-notice {

    position: fixed;

    bottom: 15px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(25, 23, 20, 0.9);

    color: #c7bcae;

    border: 1px solid #4b443c;

    padding: 9px 17px;

    border-radius: 20px;

    font-size: 10px;

    letter-spacing: 1px;

    z-index: 9999;

}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:

        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nav-links {

        display: none;

    }


    .navbar {

        padding: 20px 7%;

    }


    .intro {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .venue-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .venue-card {

        min-height: auto;

    }


    section {

        padding: 100px 7%;

    }

}


@media (max-width: 600px) {

    .hero {

        padding: 130px 7% 80px;

    }


    .hero h1 {

        font-size: 65px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        text-align: center;

    }


    .review-card {

        padding: 30px 10px;

    }


    .review-text {

        font-size: 30px;

    }


    .logo {

        font-size: 23px;

    }


    .logo span {

        font-size: 14px;

    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    .reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }

}