/* ============================================
   EVENING HALL — Warm Magazine Color System #9
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #FAF6F0;
    color: #3C2E1F;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #8B5E3C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C8A87C;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.3;
    color: #3C2E1F;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #4A3B2B;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER — Centered Brand (#3)
   ============================================ */
.site-header {
    background: #FAF6F0;
    border-bottom: 1px solid rgba(200, 168, 124, 0.2);
    position: relative;
    z-index: 100;
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__logo {
    display: block;
    margin-bottom: 1.5rem;
}

.header__logo-img {
    width: 140px;
    height: auto;
}

.header__nav {
    width: 100%;
}

.nav__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.nav__item {
    margin: 0;
}

.nav__link {
    display: block;
    padding: 0.5rem 1.2rem;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5C4A35;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav__link:hover {
    color: #C8A87C;
}

/* Burger */
.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.burger__line {
    display: block;
    width: 28px;
    height: 2px;
    background: #3C2E1F;
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   FOOTER — Centered (#3)
   ============================================ */
.site-footer {
    background: #3C2E1F;
    color: #E8DCC8;
    padding: 4rem 1.5rem 2rem;
}

.footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer__top {
    margin-bottom: 2.5rem;
}

.footer__logo {
    margin: 0 auto 1rem;
    filter: brightness(1.2) contrast(0.9);
    opacity: 0.9;
}

.footer__tagline {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #C8A87C;
    font-style: italic;
    margin-bottom: 0;
}

.footer__middle {
    margin-bottom: 2.5rem;
}

.footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.footer__nav-link {
    color: #D4C4A8;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #C8A87C;
}

.footer__legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.footer__legal-link {
    color: #9A8A70;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: #C8A87C;
}

.footer__bottom {
    border-top: 1px solid rgba(200, 168, 124, 0.15);
    padding-top: 1.5rem;
}

.footer__copyright {
    font-size: 0.85rem;
    color: #9A8A70;
    margin-bottom: 0.3rem;
}

.footer__domain {
    font-size: 0.85rem;
    color: #9A8A70;
    margin-bottom: 0.5rem;
}

.footer__disclaimer {
    font-size: 0.8rem;
    color: #7A6A55;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   HERO — Storytelling (#9)
   ============================================ */
.hero {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    background: #FAF6F0;
    overflow: hidden;
}

.hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    padding-right: 1rem;
}

.hero__label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A87C;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.hero__title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #3C2E1F;
}

.hero__title em {
    font-style: italic;
    color: #8B5E3C;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: #6A5A45;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero__btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #3C2E1F;
    color: #FAF6F0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero__btn:hover {
    background: #5C4A35;
    color: #FAF6F0;
    transform: translateY(-2px);
}

.hero__image-wrapper {
    position: relative;
}

.hero__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(60, 46, 31, 0.1);
}

.hero__accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    border: 2px solid #C8A87C;
    opacity: 0.4;
    z-index: -1;
}

/* --- Hero for inner pages --- */
.hero--inner {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.hero--inner .hero__inner {
    grid-template-columns: 1fr;
    max-width: 800px;
    text-align: center;
}

.hero--inner .hero__content {
    padding-right: 0;
}

.hero--inner .hero__title {
    font-size: 2.5rem;
}

/* ============================================
   ZIGZAG SECTION LAYOUT (#2)
   ============================================ */
.section-zigzag {
    padding: 5rem 1.5rem;
}

.section-zigzag:nth-child(even) {
    background: #F5EFE6;
}

.section-zigzag__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-zigzag__reverse .section-zigzag__inner {
    direction: rtl;
}

.section-zigzag__reverse .section-zigzag__text {
    direction: ltr;
}

.section-zigzag__text {
    direction: ltr;
}

.section-zigzag__label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A87C;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
}

.section-zigzag__title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #3C2E1F;
}

.section-zigzag__desc {
    font-size: 1.05rem;
    color: #5C4A35;
    line-height: 1.8;
}

.section-zigzag__image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 25px rgba(60, 46, 31, 0.08);
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.card {
    background: #FFFFFF;
    border: 1px solid rgba(200, 168, 124, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(60, 46, 31, 0.06);
}

.card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #C8A87C;
}

.card__title {
    font-size: 1.3rem;
    color: #3C2E1F;
    margin-bottom: 0.8rem;
}

.card__text {
    font-size: 0.95rem;
    color: #6A5A45;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.gallery-grid__item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-grid__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid__item:hover .gallery-grid__image {
    transform: scale(1.05);
}

.gallery-grid__item--wide {
    grid-column: span 2;
}

.gallery-grid__item--tall {
    grid-row: span 2;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 5rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section__title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 168, 124, 0.2);
    padding: 0;
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    color: #3C2E1F;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item__question:hover {
    color: #8B5E3C;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.4rem;
    color: #C8A87C;
    transition: transform 0.3s ease;
}

.faq-item__question.active::after {
    content: '−';
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item__answer.open {
    max-height: 500px;
    padding: 0 0 1.2rem;
}

.faq-item__answer p {
    font-size: 0.95rem;
    color: #6A5A45;
    margin-bottom: 0;
}

/* ============================================
   CTA — Contact CTA (#10)
   ============================================ */
.cta-section {
    background: #3C2E1F;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    color: #FAF6F0;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section__text {
    color: #D4C4A8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section__btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #C8A87C;
    color: #3C2E1F;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-section__btn:hover {
    background: #D4B896;
    color: #3C2E1F;
    transform: translateY(-2px);
}

/* ============================================
   18+ POPUP OVERLAY
   ============================================ */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 46, 31, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-gate.active {
    opacity: 1;
    visibility: visible;
}

.age-gate__modal {
    background: #FAF6F0;
    max-width: 480px;
    width: 90%;
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.age-gate__logo {
    width: 80px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.age-gate__title {
    font-size: 1.5rem;
    color: #3C2E1F;
    margin-bottom: 0.8rem;
}

.age-gate__text {
    font-size: 0.95rem;
    color: #6A5A45;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-gate__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate__btn {
    padding: 0.8rem 2.5rem;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.age-gate__btn--yes {
    background: #3C2E1F;
    color: #FAF6F0;
}

.age-gate__btn--yes:hover {
    background: #5C4A35;
}

.age-gate__btn--no {
    background: transparent;
    color: #3C2E1F;
    border: 1px solid #3C2E1F;
}

.age-gate__btn--no:hover {
    background: rgba(60, 46, 31, 0.05);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #3C2E1F;
    padding: 1.5rem 2rem;
    z-index: 9998;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: #D4C4A8;
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-banner__link {
    color: #C8A87C;
    text-decoration: underline;
}

.cookie-banner__btn {
    padding: 0.7rem 2rem;
    background: #C8A87C;
    color: #3C2E1F;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.cookie-banner__btn:hover {
    background: #D4B896;
}

/* ============================================
   LEGAL PAGES — Card Based (#3)
   ============================================ */
.legal-page {
    padding: 3rem 1.5rem 5rem;
}

.legal-page__inner {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: #FFFFFF;
    border: 1px solid rgba(200, 168, 124, 0.12);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(60, 46, 31, 0.03);
}

.legal-card__title {
    font-size: 1.4rem;
    color: #3C2E1F;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(200, 168, 124, 0.2);
}

.legal-card__text {
    font-size: 0.95rem;
    color: #5C4A35;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-card__text:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 3rem 1.5rem 5rem;
}

.contact-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(200, 168, 124, 0.12);
    padding: 3rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #3C2E1F;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(200, 168, 124, 0.3);
    background: #FAF6F0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    color: #3C2E1F;
    transition: border-color 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8A87C;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    padding: 0.9rem 3rem;
    background: #3C2E1F;
    color: #FAF6F0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
    background: #5C4A35;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
    padding: 6rem 1.5rem;
    text-align: center;
}

.thankyou-page__inner {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-page__icon {
    font-size: 4rem;
    color: #C8A87C;
    margin-bottom: 1.5rem;
    display: block;
}

.thankyou-page__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.thankyou-page__text {
    font-size: 1.1rem;
    color: #6A5A45;
    margin-bottom: 2rem;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    padding: 4rem 1.5rem 1rem;
}

.section-title__label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A87C;
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    display: block;
}

.section-title__heading {
    font-size: 2.2rem;
    color: #3C2E1F;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__inner,
    .section-zigzag__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__content {
        padding-right: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__image {
        height: 350px;
    }

    .section-zigzag__image {
        height: 300px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid__item--wide {
        grid-column: span 1;
    }

    .gallery-grid__item--tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    /* Mobile header */
    .header__inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .header__logo {
        margin-bottom: 0;
    }

    .header__logo-img {
        width: 70px;
        height: auto;
    }

    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(250, 246, 240, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 100;
    }

    .header__nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Mobile sections */
    .section-zigzag {
        padding: 3rem 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .hero__image {
        height: 250px;
    }

    .section-zigzag__image {
        height: 220px;
    }

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

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

    .gallery-grid__image {
        height: 250px;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .age-gate__modal {
        padding: 2rem 1.5rem;
    }

    .age-gate__buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav,
    .footer__legal {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section-zigzag__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS (via IntersectionObserver)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
