/* =============================================================
   GLOBAL VARIABLES
   =============================================================

   THIS IS THE MAIN AREA YOU WILL CUSTOMIZE.

   Change these values to completely change the visual identity.
============================================================= */

:root {

    /* CUSTOMIZE: Main colors */

    --black: #09574A;
    --dark: #171717;
    --white: #ffffff;

    --gold: #b8955a;
    --gold-light: #EBC5A8;

    --gray: #777777;
    --light-gray: #f5f5f3;
    --border: #dddddd;


    /* CUSTOMIZE: Fonts */

    --font-main: "Montserrat", sans-serif;
    --font-heading: "demi-gothic-bold", serif ;


    /* CUSTOMIZE: Global width */

    --container-width: 1200px;


    /* CUSTOMIZE: Animation speed */

    --transition: 0.35s ease;
}



/* =============================================================
   RESET
============================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-main);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}



/* =============================================================
   GLOBAL CONTAINERS
============================================================= */

.section-container {
    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    margin: 0 auto;
}


.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}


.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}


h2 {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
}


.gold-line {
    width: 55px;
    height: 2px;
    background: var(--gold);
    margin: 25px 0;
}


.gold-line.centered {
    margin: 25px auto;
}



/* =============================================================
   HEADER
============================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: #09574A;

    transition:
        background var(--transition),
        box-shadow var(--transition);
}


.site-header.scrolled {
    background: #09574A;

    box-shadow:
        0 5px 25px #07473d;
}


.header-inner {

    width: min(
        calc(100% - 60px),
        1300px
    );

    height: 90px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}



/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo img {
    width: 100px;
    height: auto;
}

/* Desktop navigation */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 38px;
}


.desktop-nav a {

    position: relative;

    color: #EBC5A8;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: color var(--transition);
}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}


.desktop-nav a:hover {
    color: var(--gold);
}


.desktop-nav a:hover::after {
    width: 100%;
}



/* Mobile menu */

.mobile-menu-button {

    display: none;

    width: 35px;
    height: 35px;

    background: none;
    border: none;

    cursor: pointer;
}


.mobile-menu-button span {

    display: block;

    width: 25px;
    height: 2px;

    background: white;

    margin: 5px auto;
}


.mobile-nav {

    display: none;

    flex-direction: column;

    background: var(--black);

    padding: 20px 30px;
}


.mobile-nav.active {
    display: flex;
}


.mobile-nav a {

    color: white;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255,255,255,0.1);

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 11px;
}



/* =============================================================
   HERO
============================================================= */

.hero {

    position: relative;

    min-height: 850px;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.hero-background {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.5)
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        1100px
    );

    margin: auto;

    color: white;

    padding-top: 80px;
}


.hero-eyebrow {

    font-size: 11px;

    letter-spacing: 5px;

    color: var(--gold-light);

    margin-bottom: 25px;
}


.hero h1 {

    max-width: 800px;

    font-family: var(--font-heading);

    font-weight: 400;

    font-size: clamp(
        55px,
        8vw,
        105px
    );

    line-height: 0.95;

    text-transform: uppercase;
}


.hero h1 span {
    display: block;
    color: var(--gold-light);
}


.hero-description {

    max-width: 500px;

    margin: 35px 0;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 300;
}



/* =============================================================
   BUTTONS
============================================================= */

.main-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 190px;

    padding: 16px 30px;

    background: var(--gold);

    color: white;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    border: 1px solid var(--gold);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


.main-button:hover {

    background: transparent;

    color: white;

    transform: translateY(-3px);
}


.outline-button {

    display: inline-flex;

    padding: 15px 28px;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    transition: var(--transition);
}


.outline-button:hover {

    background: var(--gold);

    color: white;
}


.dark-button:hover {
    color: var(--black);
}



/* =============================================================
   STATISTICS
============================================================= */

.statistics {

    background: var(--black);

    color: white;

    padding: 55px 30px;
}


.stats-container {

    max-width: 1000px;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 70px;
}


.stat {

    text-align: center;
}


.stat strong {

    display: block;

    font-family: var(--font-heading);

    font-size: 55px;

    font-weight: 400;

    color: var(--gold-light);
}


.stat span {

    display: block;

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #ccc;
}


.stat-divider {

    width: 1px;

    height: 65px;

    background: rgba(255,255,255,0.2);
}



/* =============================================================
   ABOUT / INTRO
============================================================= */

.intro-section {

    padding: 130px 0;

    background: var(--light-gray);
}


.intro-section .section-container {

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 90px;

    align-items: center;
}


.intro-image {

    height: 600px;

    overflow: hidden;
}


.intro-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.intro-image:hover img {
    transform: scale(1.05);
}


.intro-content p:not(.section-label) {

    color: #666;

    line-height: 1.9;

    font-size: 14px;

    margin-bottom: 20px;
}



/* =============================================================
   EVENTS
============================================================= */

.events-section {

    padding: 130px 0;

    background: white;
}


.events-grid {

    width: min(
        calc(100% - 80px),
        1200px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


.event-card {

    background: white;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.08);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

    overflow: hidden;
}


.event-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.14);
}


.event-image {

    height: 310px;

    overflow: hidden;
}


.event-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.event-card:hover .event-image img {
    transform: scale(1.07);
}


.event-content {
    padding: 30px;
}


.event-date {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.event-content h3 {

    font-family: var(--font-heading);

    font-size: 25px;

    font-weight: 400;

    margin-bottom: 12px;
}


.event-location {

    color: #777;

    font-size: 11px;

    letter-spacing: 1px;
}



/* =============================================================
   FOOD SECTION
============================================================= */

.food-section {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;
}


.food-background {

    position: absolute;

    inset: 0;
}


.food-background  {
    color :#09574A;
    height: 100%;

    object-fit: cover;
}


.food-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,0.72);
}


.food-content {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 60px),
        1000px
    );

    text-align: center;
}


.food-content > p:not(.section-label) {

    max-width: 600px;

    margin: auto;

    line-height: 1.8;

    color: white;
}


.food-icons {

    margin-top: 60px;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 30px;
}


.food-icon {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;
}


.food-icon img {

    width: 65px;

    height: 65px;

    object-fit: contain;


    transition: transform var(--transition);
}


.food-icon:hover img {
    transform: translateY(-8px);
}


.food-icon span {

    font-size: 9px;

    letter-spacing: 2px;

    color: white;
}



/* =============================================================
   CATERING
============================================================= */

.catering-section {

    padding: 140px 0;

    background: var(--light-gray);
}


.catering-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: center;
}


.catering-content p:not(.section-label) {

    color: #666;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 20px;
}


.catering-image {

    height: 600px;

    overflow: hidden;
}


.catering-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.catering-image:hover img {
    transform: scale(1.05);
}



/* =============================================================
   GALLERY
============================================================= */

.gallery-section {
    background: var(--black);
}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 300px;
}


.gallery-item {

    overflow: hidden;
}


.gallery-item.large {

    grid-column: span 2;

    grid-row: span 2;
}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        opacity 0.4s ease;
}


.gallery-item:hover img {

    transform: scale(1.08);

    opacity: 0.8;
}



/* =============================================================
   REVIEWS
============================================================= */

.reviews-section {

    padding: 130px 0;

    background: white;
}


.reviews-grid {

    width: min(
        calc(100% - 80px),
        1200px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.review-card {

    padding: 40px 30px;

    border: 1px solid #e5e5e5;

    min-height: 280px;

    display: flex;

    flex-direction: column;
}


.stars {

    color: var(--gold);

    letter-spacing: 4px;

    margin-bottom: 25px;
}


.review-card p {

    color: #555;

    line-height: 1.8;

    font-size: 13px;

    flex: 1;
}


.review-card span {

    margin-top: 25px;

    color: #999;

    font-size: 9px;

    letter-spacing: 2px;
}



/* =============================================================
   CONTACT
============================================================= */

.contact-section {

    padding: 130px 0;

    background: var(--light-gray);
}


.contact-container {

    width: min(
        calc(100% - 80px),
        1100px
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 100px;
}


.contact-intro p:not(.section-label) {

    color: #666;

    line-height: 1.8;

    font-size: 14px;
}


.contact-form {

    width: 100%;
}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


.form-group {

    margin-bottom: 25px;
}


.form-group label {

    display: block;

    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #555;
}


.form-group input,
.form-group textarea {

    width: 100%;

    border: none;

    border-bottom: 1px solid #bbb;

    background: transparent;

    padding: 13px 0;

    outline: none;

    color: var(--black);

    transition:
        border-color var(--transition);
}


.form-group textarea {

    resize: vertical;

    border: 1px solid #bbb;

    padding: 15px;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--gold);
}


.submit-button {

    border: none;

    background: var(--black);

    color: white;

    padding: 17px 35px;

    cursor: pointer;

    font-size: 10px;

    letter-spacing: 2px;

    transition: var(--transition);
}


.submit-button:hover {

    background: var(--gold);

    transform: translateY(-3px);
}



/* =============================================================
   FOOTER
============================================================= */

.site-footer {

    background: #0c0c0c;

    color: white;
}


.footer-container {

    width: min(
        calc(100% - 80px),
        1200px
    );

    margin: auto;

    padding: 70px 0;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 15px;
}


.footer-brand img {

    width: 90px;

    max-height: 70px;

    object-fit: contain;
}


.footer-brand span {

    font-family: var(--font-heading);

    font-size: 22px;
}


.footer-links {

    display: flex;

    justify-content: center;

    gap: 25px;
}


.footer-links a,
.footer-social a {

    color: #aaa;

    font-size: 10px;

    letter-spacing: 1px;

    transition: color var(--transition);
}


.footer-links a:hover,
.footer-social a:hover {

    color: var(--gold);
}


.footer-social {

    display: flex;

    justify-content: flex-end;

    gap: 20px;
}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 25px;

    color: #666;

    font-size: 10px;

    letter-spacing: 1px;
}



/* =============================================================
   RESPONSIVE — TABLET
============================================================= */

@media (max-width: 1000px) {


    .desktop-nav {
        gap: 20px;
    }


    .desktop-nav a {
        font-size: 9px;
    }


    .events-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reviews-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .intro-section .section-container,
    .catering-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }


    .food-icons {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .contact-container {
        gap: 50px;
    }

}



/* =============================================================
   RESPONSIVE — MOBILE
============================================================= */

@media (max-width: 700px) {


    /* Header */

    .header-inner {

        height: 75px;

        width: calc(100% - 35px);
    }


    .desktop-nav {
        display: none;
    }


    .mobile-menu-button {
        display: block;
    }


    /* Hero */

    .hero {
        min-height: 700px;
    }


    .hero-content {
        width: calc(100% - 45px);
    }


    .hero h1 {
        font-size: 55px;
    }


    /* Statistics */

    .stats-container {

        flex-direction: column;

        gap: 30px;
    }


    .stat-divider {

        width: 70px;

        height: 1px;
    }


    /* General */

    .section-container {

        width: calc(100% - 40px);
    }


    .intro-section,
    .events-section,
    .catering-section,
    .reviews-section,
    .contact-section {

        padding: 80px 0;
    }


    /* About */

    .intro-section .section-container,
    .catering-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .intro-image,
    .catering-image {

        height: 400px;
    }


    /* Events */

    .events-grid {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;
    }


    /* Food */

    .food-icons {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 20px;
    }


    /* Gallery */

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 200px;
    }


    .gallery-item.large {

        grid-column: span 2;

        grid-row: span 1;
    }


    /* Reviews */

    .reviews-grid {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;
    }


    /* Contact */

    .contact-container {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Footer */

    .footer-container {

        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }


    .footer-brand,
    .footer-links,
    .footer-social {

        justify-content: center;
    }

}



/* =============================================================
   VERY SMALL SCREENS
============================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 45px;
    }


    h2 {
        font-size: 38px;
    }


    .food-icons {
        gap: 25px 10px;
    }

}
/* =============================================================
scroll REVEAL
============================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}
