/* =========================================
   SOUL CAFE
   Global Styles
========================================= */

:root {
    --black: #151311;
    --black-soft: #1d1a17;
    --brown: #2a231d;
    --brown-light: #3a3028;

    --cream: #e8dfd2;
    --cream-soft: #cfc4b5;

    --gold: #c3a16d;
    --gold-light: #d8bd8d;

    --wine: #722f37;

    --serif: "Cormorant Garamond", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1320px;
    --transition: 0.35s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================
   UTILITIES
========================================= */

.section {
    padding: 140px 6vw;
    max-width: 1600px;
    margin: auto;
}

.section-dark {
    background: var(--black);
    color: var(--cream);
    padding: 140px 6vw;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 80px;

    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #81776b;
}

.section-label span:first-child {
    color: var(--gold);
}

.section-label-light {
    color: #756d63;
}


/* =========================================
   NAVIGATION
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background: rgba(21, 19, 17, 0.88);
    backdrop-filter: blur(14px);
}

.navbar {
    height: 90px;
    width: min(var(--container), 88%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    position: relative;

    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #d5cdc2;

    transition: color var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    border: 1px solid rgba(195, 161, 109, 0.55);

    padding: 12px 20px;

    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}

.nav-button:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    width: 34px;
    height: 25px;

    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--cream);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    height: 100svh;
    min-height: 700px;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 10, 8, 0.82) 0%,
            rgba(12, 10, 8, 0.55) 45%,
            rgba(12, 10, 8, 0.35) 100%
        ),
        linear-gradient(
            0deg,
            rgba(12, 10, 8, 0.75) 0%,
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(var(--container), 88%);
    margin: auto;

    padding-top: 80px;
}

.hero-content h1 {
    margin-top: 22px;

    font-family: var(--serif);
    font-size: clamp(80px, 11vw, 170px);
    font-weight: 500;

    line-height: 0.78;
    letter-spacing: -0.045em;
}

.hero-content h1 em {
    color: var(--gold);
    font-weight: 400;
}

.hero-description {
    max-width: 440px;

    margin-top: 42px;

    font-size: 15px;
    line-height: 1.8;

    color: #d1c7ba;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 26px;

    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition: all var(--transition);
}

.button-primary {
    background: var(--gold);
    color: var(--black);
}

.button-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid rgba(232, 223, 210, 0.45);
}

.button-outline:hover {
    background: rgba(232, 223, 210, 0.1);
    border-color: var(--cream);
}

.hero-bottom {
    position: absolute;
    z-index: 3;

    bottom: 36px;
    left: 6vw;
    right: 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #b5aa9d;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
}

.small-line {
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--cream-soft);
}

.scroll-arrow {
    font-size: 17px;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
    overflow: hidden;

    background: var(--gold);
    color: var(--black);

    padding: 18px 0;

    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee {
    display: flex;
    align-items: center;
    gap: 30px;

    width: max-content;

    animation: marquee 25s linear infinite;

    font-family: var(--serif);
    font-size: 21px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.marquee-dot {
    font-size: 12px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--cream);
    color: var(--black);
}

.about .section-label {
    color: #82786d;
}

.about-heading h2,
.events-heading h2,
.gallery-header h2,
.contact-heading h2 {
    margin-top: 20px;

    font-family: var(--serif);
    font-size: clamp(60px, 7vw, 105px);

    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.about-heading h2 em,
.events-heading h2 em,
.gallery-header h2 em,
.contact-heading h2 em {
    color: var(--gold);
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;

    align-items: end;
}

.about-text {
    max-width: 510px;
}

.large-text {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-text > p:not(.large-text) {
    color: #655d54;
    font-size: 14px;
    line-height: 1.9;

    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 18px;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(21, 19, 17, 0.3);
    padding-bottom: 7px;

    transition: gap var(--transition);
}

.text-link:hover {
    gap: 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;
    gap: 18px;

    align-items: end;

    margin-top: 110px;
}

.about-image {
    overflow: hidden;
}

.about-image-large {
    height: 620px;
}

.about-image-small {
    height: 400px;
}

.about-image img {
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   WINE / MENU
========================================= */

.wine {
    padding: 140px 6vw;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(114, 47, 55, 0.13),
            transparent 30%
        ),
        var(--black);
}

.wine-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 80px;
}

.wine-header h2 {
    margin-top: 22px;

    font-family: var(--serif);
    font-size: clamp(60px, 7vw, 105px);

    line-height: 0.83;
    font-weight: 500;

    letter-spacing: -0.04em;
}

.wine-header h2 em {
    color: var(--gold);
    font-weight: 400;
}

.wine-intro {
    max-width: 300px;

    font-size: 14px;
    line-height: 1.8;

    color: #a69b8d;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-card {
    background: var(--black-soft);

    border: 1px solid rgba(232, 223, 210, 0.08);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(195, 161, 109, 0.4);
}

.menu-card-image {
    height: 360px;
    overflow: hidden;
}

.menu-card-image img {
    transition: transform 0.8s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 32px;
}

.card-number {
    color: var(--gold);

    font-size: 10px;
    letter-spacing: 0.18em;
}

.menu-card h3 {
    margin-top: 15px;

    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
}

.menu-card p {
    margin-top: 12px;

    max-width: 350px;

    color: #9f9589;

    font-size: 13px;
    line-height: 1.8;
}

.light-link {
    color: var(--cream);
    border-color: rgba(232, 223, 210, 0.25);
}


/* =========================================
   EVENTS
========================================= */

.events {
    background: var(--cream);
    color: var(--black);
}

.events-heading {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    column-gap: 10vw;
    row-gap: 35px;

    margin-bottom: 100px;
}

.events-heading .eyebrow {
    grid-column: 1 / -1;
}

.events-heading h2 {
    margin-top: 0;
}

.events-heading > p:last-child {
    align-self: end;

    max-width: 400px;

    color: #655d54;

    font-size: 14px;
    line-height: 1.9;
}

.events-list {
    border-top: 1px solid rgba(21, 19, 17, 0.2);
}

.event {
    display: grid;

    grid-template-columns: 100px 1fr 180px 50px;

    align-items: center;

    min-height: 130px;

    border-bottom: 1px solid rgba(21, 19, 17, 0.2);

    transition: background var(--transition);
}

.event:hover {
    background: rgba(21, 19, 17, 0.045);
}

.event-date {
    display: flex;
    flex-direction: column;
}

.event-day {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 0.8;
}

.event-month {
    margin-top: 8px;

    font-size: 9px;
    letter-spacing: 0.15em;

    color: var(--gold);
}

.event-info > span {
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #80776c;
}

.event-info h3 {
    margin-top: 5px;

    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
}

.event-type {
    font-size: 9px;
    letter-spacing: 0.15em;

    color: #7b7268;
}

.event-arrow {
    font-size: 20px;

    transition:
        transform var(--transition),
        color var(--transition);
}

.event:hover .event-arrow {
    transform: translate(5px, -5px);
    color: var(--gold);
}

.events-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 45px;
}

.button-dark {
    background: var(--black);
    color: var(--cream);
}

.button-dark:hover {
    background: var(--gold);
    color: var(--black);
}

.events-footer > span {
    color: #81786e;

    font-size: 11px;
}


/* =========================================
   SEASONS
========================================= */

.seasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.season {
    position: relative;

    height: 720px;

    overflow: hidden;
}

.season img {
    transition: transform 1.2s ease;
}

.season:hover img {
    transform: scale(1.04);
}

.season-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(10, 8, 6, 0.85),
            rgba(10, 8, 6, 0.1) 70%
        );
}

.season-content {
    position: absolute;

    left: 55px;
    right: 55px;
    bottom: 55px;

    z-index: 2;
}

.season-content > span {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.season-content h2 {
    margin-top: 15px;

    font-family: var(--serif);
    font-size: clamp(55px, 5vw, 85px);
    line-height: 0.85;

    font-weight: 500;
}

.season-content h2 em {
    color: var(--gold);
    font-weight: 400;
}

.season-content p {
    max-width: 320px;

    margin-top: 25px;

    color: #c6bbad;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
    background: var(--cream);
    color: var(--black);
}

.gallery-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    grid-template-rows: 340px 340px;

    gap: 18px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    min-height: 850px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 80%,
            rgba(114, 47, 55, 0.18),
            transparent 35%
        ),
        var(--black);
}

.contact-inner {
    width: min(var(--container), 100%);
    margin: auto;
}

.contact-heading {
    margin-bottom: 100px;
}

.contact-heading h2 {
    font-size: clamp(70px, 8vw, 125px);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(232, 223, 210, 0.15);
}

.contact-block {
    padding: 35px 30px 0 0;
}

.contact-block:not(:last-child) {
    border-right: 1px solid rgba(232, 223, 210, 0.15);
    margin-right: 35px;
}

.contact-block > span {
    color: var(--gold);

    font-size: 9px;
    letter-spacing: 0.2em;
}

.contact-block p {
    margin-top: 18px;

    color: #c1b6a9;

    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.3;
}

.contact-block .text-link {
    margin-top: 25px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 70px 6vw 30px;

    background: #100e0c;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(232, 223, 210, 0.12);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 60px;
    letter-spacing: 0.1em;
}

.footer-top p {
    color: #847b70;

    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    color: #6f675e;

    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-bottom a {
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section,
    .section-dark,
    .wine {
        padding: 100px 6vw;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        margin-top: 70px;
    }

    .wine-grid {
        grid-template-columns: 1fr;
    }

    .menu-card-image {
        height: 450px;
    }

    .seasons {
        grid-template-columns: 1fr;
    }

    .season {
        height: 600px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-block:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(232, 223, 210, 0.15);

        margin-right: 0;
        padding-bottom: 40px;
    }
}


@media (max-width: 700px) {

    .navbar {
        height: 75px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 78px;
    }

    .hero-description {
        font-size: 13px;
        max-width: 330px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bottom {
        bottom: 25px;
    }

    .hero-location {
        display: none;
    }

    .section,
    .section-dark,
    .wine {
        padding: 90px 6vw;
    }

    .section-label {
        margin-bottom: 55px;
    }

    .about-heading h2,
    .events-heading h2,
    .gallery-header h2,
    .contact-heading h2,
    .wine-header h2 {
        font-size: 65px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image-large,
    .about-image-small {
        height: 430px;
    }

    .wine-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-card-image {
        height: 400px;
    }

    .events-heading {
        grid-template-columns: 1fr;
    }

    .event {
        grid-template-columns: 65px 1fr 35px;
        padding: 25px 0;
    }

    .event-type {
        display: none;
    }

    .event-info h3 {
        font-size: 28px;
    }

    .events-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .season {
        height: 540px;
    }

    .season-content {
        left: 30px;
        right: 30px;
        bottom: 35px;
    }

    .gallery-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px;

        gap: 12px;
    }

    .gallery-item-tall {
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .contact {
        min-height: auto;
    }

    .contact-heading {
        margin-bottom: 70px;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}