/* =========================================================
   MIRCH MASALA
   Main Website Stylesheet
========================================================= */


/* ---------------------------------------------------------
   BRAND COLORS
--------------------------------------------------------- */

:root {

    --maroon: #8e1824;
    --dark-maroon: #681018;

    --green: #214c3b;
    --dark-green: #17372b;

    --gold: #e2ad42;
    --orange: #d7622b;

    --cream: #fff7e8;
    --light-cream: #fffaf2;

    --white: #ffffff;

    --dark: #241713;
    --grey: #73635b;

    --border: #eadac5;

    --shadow:
        0 15px 45px rgba(72, 40, 22, 0.12);

}


/* ---------------------------------------------------------
   RESET
--------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--light-cream);

    color:
        var(--dark);

    line-height: 1.6;

}


img {

    width: 100%;
    display: block;

}


a {

    color: inherit;
    text-decoration: none;

}


button {

    font-family: inherit;

}


.container {

    width: min(1160px, 92%);
    margin: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background:
        var(--green);

    color:
        white;

    padding:
        8px 0;

    font-size:
        14px;

}


.top-bar-content {

    display: flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        20px;

}


.top-contact {

    display: flex;

    gap:
        25px;

}


.top-contact a:hover {

    color:
        var(--gold);

}


/* =========================================================
   HEADER
========================================================= */

.header {

    background:
        rgba(255, 250, 242, 0.98);

    border-bottom:
        1px solid var(--border);

    position:
        sticky;

    top: 0;

    z-index:
        1000;

    box-shadow:
        0 5px 18px rgba(52, 31, 22, 0.05);

}


.navbar {

    min-height:
        82px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

}


/* Logo */

.logo,
.footer-logo {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

}


.logo-icon {

    width:
        75px;

    height:
        75px;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        linear-gradient(
            135deg,
            var(--maroon),
            var(--orange)
        );

    border:
        3px solid var(--gold);

    color:
        white;

    font-family:
        Georgia, serif;

    font-weight:
        bold;

    font-size:
        25px;

}


.logo-text {

    display:
        flex;

    flex-direction:
        column;

}


.logo-text strong {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        21px;

    letter-spacing:
        0.5px;

    line-height:
        1.1;

}


.logo-text span {

    color:
        var(--green);

    font-size:
        10px;

    letter-spacing:
        2.4px;

    text-transform:
        uppercase;

    margin-top:
        4px;

}


/* Navigation */

.navigation {

    display:
        flex;

    align-items:
        center;

    gap:
        32px;

}


.navigation a {

    font-size:
        15px;

    font-weight:
        700;

    position:
        relative;

    padding:
        30px 0;

}


.navigation a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        20px;

    width:
        0;

    height:
        3px;

    background:
        var(--orange);

    border-radius:
        3px;

    transition:
        0.25s;

}


.navigation a:hover {

    color:
        var(--maroon);

}


.navigation a:hover::after,
.navigation a.active::after {

    width:
        100%;

}


.navigation a.active {

    color:
        var(--maroon);

}


/* Mobile menu */

.mobile-menu-button {

    display:
        none;

    border:
        none;

    background:
        transparent;

    color:
        var(--maroon);

    font-size:
        27px;

    cursor:
        pointer;

}


/* =========================================================
   BUTTONS
========================================================= */

.button,
.order-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        7px;

    padding:
        14px 25px;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        all 0.25s ease;

}


.order-button,
.button-primary {

    background:
        linear-gradient(
            135deg,
            var(--maroon),
            #aa2630
        );

    color:
        white;

    box-shadow:
        0 7px 20px rgba(142, 24, 36, 0.22);

}


.order-button:hover,
.button-primary:hover {

    background:
        var(--dark-maroon);

    transform:
        translateY(-2px);

}


.button-light {

    background:
        white;

    color:
        var(--maroon);

    border:
        1px solid rgba(255,255,255,0.7);

}


.button-light:hover {

    background:
        var(--cream);

    transform:
        translateY(-2px);

}


.button-gold {

    background:
        var(--gold);

    color:
        #2e1d0e;

}


.button-gold:hover {

    background:
        #f0bd52;

    transform:
        translateY(-2px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position:
        relative;

    overflow:
        hidden;

    color:
        white;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(226, 173, 66, 0.28),
            transparent 26%
        ),

        radial-gradient(
            circle at 20% 90%,
            rgba(215, 98, 43, 0.24),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #611018 0%,
            #8e1824 48%,
            #4f1017 100%
        );

}


.hero-pattern {

    position:
        absolute;

    inset:
        0;

    opacity:
        0.09;

    background-image:

        radial-gradient(
            circle,
            #ffffff 1.5px,
            transparent 1.5px
        );

    background-size:
        28px 28px;

}


.hero-container {

    position:
        relative;

    z-index:
        2;

    min-height:
        650px;

    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items:
        center;

    gap:
        70px;

    padding-top:
        60px;

    padding-bottom:
        60px;

}


.hero-small-title {

    display:
        inline-block;

    background:
        rgba(255,255,255,0.12);

    border:
        1px solid rgba(255,255,255,0.25);

    padding:
        7px 14px;

    border-radius:
        30px;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        1px;

    margin-bottom:
        20px;

}


.hero h1 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height:
        1.04;

    max-width:
        720px;

    margin-bottom:
        24px;

}


.hero h1 span {

    display:
        block;

    color:
        var(--gold);

}


.hero-description {

    color:
        #ffede2;

    font-size:
        18px;

    max-width:
        600px;

    margin-bottom:
        30px;

}


.hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        13px;

}


/* Hero statistics */

.hero-features {

    display:
        flex;

    gap:
        35px;

    flex-wrap:
        wrap;

    margin-top:
        45px;

    padding-top:
        28px;

    border-top:
        1px solid rgba(255,255,255,0.18);

}


.hero-features div {

    display:
        flex;

    flex-direction:
        column;

}


.hero-features strong {

    font-family:
        Georgia, serif;

    color:
        var(--gold);

    font-size:
        22px;

}


.hero-features span {

    font-size:
        12px;

    color:
        #f7ded5;

}


/* Hero image */

.hero-image-area {

    position:
        relative;

    padding:
        25px;

}


.hero-image {

    position:
        relative;

    z-index:
        3;

    border-radius:
        50% 50% 45% 45%;

    overflow:
        hidden;

    border:
        7px solid rgba(255,255,255,0.18);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.3);

}


.hero-image img {

    height:
        490px;

    object-fit:
        cover;

}


.image-decoration {

    position:
        absolute;

    border-radius:
        50%;

}


.decoration-one {

    width:
        260px;

    height:
        260px;

    background:
        var(--gold);

    right:
        -25px;

    top:
        10px;

    opacity:
        0.75;

}


.decoration-two {

    width:
        180px;

    height:
        180px;

    background:
        var(--green);

    left:
        -35px;

    bottom:
        5px;

}


.hero-food-label {

    position:
        absolute;

    z-index:
        5;

    left:
        -5px;

    bottom:
        65px;

    background:
        white;

    color:
        var(--dark);

    box-shadow:
        var(--shadow);

    border-radius:
        12px;

    padding:
        14px 18px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

}


.label-icon {

    width:
        42px;

    height:
        42px;

    border-radius:
        50%;

    background:
        #fff0df;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        22px;

}


.hero-food-label div:last-child {

    display:
        flex;

    flex-direction:
        column;

}


.hero-food-label strong {

    color:
        var(--maroon);

    font-size:
        14px;

}


.hero-food-label span {

    color:
        var(--grey);

    font-size:
        11px;

}


/* =========================================================
   WELCOME
========================================================= */

.welcome-section {

    background:
        var(--cream);

    padding:
        90px 0;

}


.welcome-container {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        90px;

    align-items:
        center;

}


.section-small-title {

    display:
        block;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        3px;

    margin-bottom:
        10px;

}


.welcome-heading h2,
.section-heading h2,
.why-content h2,
.visit-box h2 {

    font-family:
        Georgia, serif;

}


.welcome-heading h2 {

    color:
        var(--green);

    font-size:
        clamp(38px, 5vw, 55px);

    line-height:
        1.12;

}


.welcome-description {

    border-left:
        4px solid var(--gold);

    padding-left:
        30px;

}


.welcome-description p {

    color:
        var(--grey);

    margin-bottom:
        14px;

}


.text-link {

    display:
        inline-block;

    color:
        var(--maroon);

    font-weight:
        bold;

    margin-top:
        8px;

}


.text-link:hover {

    color:
        var(--orange);

}


/* =========================================================
   POPULAR DISHES
========================================================= */

.popular-section {

    padding:
        95px 0;

    background:
        white;

}


.section-heading {

    text-align:
        center;

    max-width:
        700px;

    margin:
        0 auto 45px;

}


.section-heading h2 {

    color:
        var(--maroon);

    font-size:
        clamp(38px, 5vw, 52px);

    margin-bottom:
        10px;

}


.section-heading p {

    color:
        var(--grey);

}


.food-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        25px;

}


.food-card {

    background:
        var(--light-cream);

    border:
        1px solid var(--border);

    border-radius:
        17px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);

    transition:
        0.3s;

}


.food-card:hover {

    transform:
        translateY(-8px);

}


.food-image {

    height:
        245px;

    overflow:
        hidden;

    position:
        relative;

}


.food-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        0.4s;

}


.food-card:hover img {

    transform:
        scale(1.06);

}


.food-tag {

    position:
        absolute;

    top:
        16px;

    left:
        16px;

    background:
        var(--green);

    color:
        white;

    border-radius:
        25px;

    padding:
        6px 12px;

    font-size:
        11px;

    font-weight:
        700;

}


.food-content {

    padding:
        24px;

}


.food-content h3 {

    font-family:
        Georgia, serif;

    color:
        var(--maroon);

    font-size:
        24px;

    margin-bottom:
        8px;

}


.food-content p {

    color:
        var(--grey);

    font-size:
        14px;

    min-height:
        70px;

}


.food-content a {

    display:
        inline-block;

    color:
        var(--green);

    font-weight:
        800;

    margin-top:
        14px;

}


.food-content a:hover {

    color:
        var(--orange);

}


.center-button {

    text-align:
        center;

    margin-top:
        42px;

}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {

    background:
        var(--green);

    padding:
        100px 0;

    color:
        white;

    position:
        relative;

    overflow:
        hidden;

}


.why-section::after {

    content:
        "";

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    border-radius:
        50%;

    background:
        rgba(226,173,66,0.08);

    right:
        -180px;

    top:
        -120px;

}


.why-grid {

    display:
        grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap:
        75px;

    align-items:
        center;

    position:
        relative;

    z-index:
        2;

}


.why-image {

    position:
        relative;

}


.why-image img {

    height:
        520px;

    object-fit:
        cover;

    border-radius:
        22px;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.28);

}


.experience-box {

    position:
        absolute;

    right:
        -20px;

    bottom:
        30px;

    width:
        135px;

    height:
        135px;

    border-radius:
        50%;

    background:
        var(--gold);

    color:
        var(--dark);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    text-align:
        center;

    border:
        7px solid var(--green);

}


.experience-box strong {

    font-family:
        Georgia, serif;

    font-size:
        24px;

}


.experience-box span {

    font-size:
        12px;

}


.light-title {

    color:
        var(--gold);

}


.why-content h2 {

    font-size:
        clamp(38px, 5vw, 54px);

    line-height:
        1.12;

    margin-bottom:
        20px;

}


.why-content > p {

    color:
        #d9ebe2;

    max-width:
        600px;

}


.features-list {

    margin:
        35px 0;

}


.feature {

    display:
        flex;

    gap:
        17px;

    margin-bottom:
        22px;

}


.feature-icon {

    width:
        50px;

    height:
        50px;

    min-width:
        50px;

    background:
        rgba(255,255,255,0.1);

    border:
        1px solid rgba(255,255,255,0.12);

    border-radius:
        12px;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    font-size:
        22px;

}


.feature h3 {

    color:
        var(--gold);

    margin-bottom:
        3px;

}


.feature p {

    color:
        #cfe1d8;

    font-size:
        14px;

}


/* =========================================================
   VISIT SECTION
========================================================= */

.visit-section {

    background:
        var(--cream);

    padding:
        75px 0;

}


.visit-box {

    background:

        linear-gradient(
            120deg,
            var(--maroon),
            #a5242d
        );

    border-radius:
        20px;

    padding:
        45px;

    color:
        white;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        35px;

    box-shadow:
        var(--shadow);

}


.visit-small {

    color:
        var(--gold);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        3px;

}


.visit-box h2 {

    font-size:
        36px;

    margin:
        5px 0 5px;

}


.visit-box p {

    color:
        #f8dddd;

}


.visit-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #19120f;

    color:
        #ddcec5;

    padding:
        65px 0 20px;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.6fr 1fr 1fr 1fr;

    gap:
        50px;

}


.footer-logo {

    margin-bottom:
        18px;

}


.footer-about p {

    max-width:
        320px;

    color:
        #bfaea4;

}


.footer h4 {

    color:
        var(--gold);

    margin-bottom:
        16px;

    font-family:
        Georgia, serif;

    font-size:
        18px;

}


.footer a {

    display:
        block;

    color:
        #ddcec5;

    margin-bottom:
        8px;

}


.footer a:hover {

    color:
        var(--gold);

}


.footer p {

    color:
        #bfaea4;

}


.footer strong {

    color:
        white;

}


.footer-bottom {

    border-top:
        1px solid #40332d;

    margin-top:
        45px;

    padding-top:
        20px;

    text-align:
        center;

    font-size:
        13px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position:
        fixed;

    right:
        22px;

    bottom:
        22px;

    width:
        58px;

    height:
        58px;

    border-radius:
        50%;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    background:
        #25d366;

    color:
        white;

    font-size:
        27px;

    z-index:
        999;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.25);

    transition:
        0.25s;

}


.whatsapp-button:hover {

    transform:
        scale(1.08);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .navigation {

        position:
            absolute;

        display:
            none;

        flex-direction:
            column;

        align-items:
            flex-start;

        top:
            82px;

        left:
            0;

        right:
            0;

        background:
            var(--light-cream);

        padding:
            20px 4%;

        border-bottom:
            1px solid var(--border);

        box-shadow:
            0 12px 25px rgba(0,0,0,0.08);

        gap:
            0;

    }


    .navigation.show {

        display:
            flex;

    }


    .navigation a {

        width:
            100%;

        padding:
            13px 0;

    }


    .navigation a::after {

        display:
            none;

    }


    .mobile-menu-button {

        display:
            block;

        margin-left:
            auto;

    }


    .header-order {

        display:
            none;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .hero-content {

        text-align:
            center;

    }


    .hero-description {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .hero-buttons,
    .hero-features {

        justify-content:
            center;

    }


    .hero-image-area {

        max-width:
            600px;

        margin:
            auto;

    }


    .welcome-container {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .food-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }


    .why-image {

        max-width:
            650px;

        margin:
            auto;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}



@media (max-width: 650px) {

    .top-bar-content {

        justify-content:
            center;

    }


    .top-contact {

        display:
            none;

    }


    .navbar {

        min-height:
            72px;

    }


    .navigation {

        top:
            72px;

    }


    .logo-icon {

        width:
            42px;

        height:
            42px;

    }


    .logo-text strong {

        font-size:
            18px;

    }


    .hero-container {

        min-height:
            auto;

        padding-top:
            60px;

        padding-bottom:
            70px;

    }


    .hero h1 {

        font-size:
            46px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-image img {

        height:
            390px;

    }


    .hero-food-label {

        left:
            5px;

        bottom:
            45px;

    }


    .hero-features {

        gap:
            20px;

    }


    .welcome-section,
    .popular-section,
    .why-section {

        padding:
            70px 0;

    }


    .welcome-description {

        padding-left:
            20px;

    }


    .food-grid {

        grid-template-columns:
            1fr;

    }


    .food-content p {

        min-height:
            auto;

    }


    .why-image img {

        height:
            410px;

    }


    .experience-box {

        right:
            -5px;

    }


    .visit-box {

        padding:
            32px 25px;

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .visit-box h2 {

        font-size:
            31px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            30px;

    }


    .footer {

        padding-top:
            50px;

    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */


/* ---------------------------------------------------------
   ABOUT HERO
--------------------------------------------------------- */

.about-hero {

    min-height:
        390px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    text-align:
        center;

    color:
        white;

    background:

        linear-gradient(
            rgba(77, 12, 18, 0.80),
            rgba(77, 12, 18, 0.84)
        ),

        url(
            "https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=85"
        );

    background-size:
        cover;

    background-position:
        center;

}


.about-hero::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:

        radial-gradient(
            circle at center,
            transparent 20%,
            rgba(35, 6, 10, 0.30) 100%
        );

}


.about-hero-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        850px;

}


.about-hero h1 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(48px, 7vw, 72px);

    line-height:
        1.1;

    margin-bottom:
        18px;

}


.about-hero p {

    color:
        #f8ded6;

    font-size:
        18px;

    max-width:
        720px;

    margin:
        auto;

}



/* ---------------------------------------------------------
   STORY
--------------------------------------------------------- */

.about-story-section {

    padding:
        100px 0;

    background:
        var(--cream);

}


.about-story-grid {

    display:
        grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap:
        80px;

    align-items:
        center;

}


.about-story-image {

    position:
        relative;

}


.about-story-image img {

    width:
        100%;

    height:
        560px;

    object-fit:
        cover;

    border-radius:
        22px;

    box-shadow:
        var(--shadow);

}


.about-image-badge {

    position:
        absolute;

    right:
        -20px;

    bottom:
        35px;

    background:
        var(--maroon);

    color:
        white;

    border:
        6px solid var(--cream);

    width:
        150px;

    height:
        150px;

    border-radius:
        50%;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    align-items:
        center;

    text-align:
        center;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.20);

}


.about-image-badge strong {

    color:
        var(--gold);

    font-family:
        Georgia, serif;

    font-size:
        22px;

}


.about-image-badge span {

    font-size:
        11px;

    max-width:
        100px;

}


.about-story-content h2 {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        clamp(38px, 5vw, 54px);

    line-height:
        1.15;

    margin-bottom:
        24px;

}


.about-story-content p {

    color:
        var(--grey);

    margin-bottom:
        17px;

    font-size:
        16px;

}


.about-story-content .button {

    margin-top:
        15px;

}



/* ---------------------------------------------------------
   VALUES
--------------------------------------------------------- */

.about-values-section {

    padding:
        95px 0;

    background:
        white;

}


.about-values-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        22px;

}


.about-value-card {

    background:
        var(--light-cream);

    border:
        1px solid var(--border);

    border-radius:
        16px;

    padding:
        35px 25px;

    text-align:
        center;

    transition:
        0.3s;

}


.about-value-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

    border-color:
        #e4c18a;

}


.about-value-icon {

    width:
        70px;

    height:
        70px;

    border-radius:
        50%;

    margin:
        0 auto 20px;

    background:
        #f8e8d5;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    font-size:
        30px;

}


.about-value-card h3 {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        22px;

    margin-bottom:
        10px;

}


.about-value-card p {

    color:
        var(--grey);

    font-size:
        14px;

}



/* ---------------------------------------------------------
   EXPERIENCE
--------------------------------------------------------- */

.about-experience-section {

    padding:
        100px 0;

    background:
        var(--green);

    color:
        white;

    position:
        relative;

    overflow:
        hidden;

}


.about-experience-section::before {

    content:
        "";

    position:
        absolute;

    width:
        400px;

    height:
        400px;

    border-radius:
        50%;

    background:
        rgba(226, 173, 66, 0.08);

    left:
        -170px;

    bottom:
        -170px;

}


.about-experience-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        75px;

    align-items:
        center;

    position:
        relative;

    z-index:
        2;

}


.about-experience-content h2 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(40px, 5vw, 55px);

    line-height:
        1.1;

    margin-bottom:
        20px;

}


.about-experience-content > p {

    color:
        #d4e5dc;

    margin-bottom:
        30px;

}


.about-points {

    display:
        flex;

    flex-direction:
        column;

    gap:
        20px;

}


.about-point {

    display:
        flex;

    gap:
        15px;

    align-items:
        flex-start;

}


.about-point > span {

    width:
        34px;

    height:
        34px;

    min-width:
        34px;

    border-radius:
        50%;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    background:
        var(--gold);

    color:
        var(--dark-green);

    font-weight:
        bold;

}


.about-point strong {

    color:
        var(--gold);

    font-size:
        17px;

}


.about-point p {

    color:
        #cfe0d7;

    font-size:
        14px;

    margin-top:
        3px;

}


.about-experience-image img {

    height:
        520px;

    object-fit:
        cover;

    border-radius:
        22px;

    box-shadow:
        0 30px 65px rgba(0,0,0,0.26);

}



/* ---------------------------------------------------------
   SPICES
--------------------------------------------------------- */

.about-spices-section {

    padding:
        80px 0;

    background:
        var(--cream);

}


.about-spices-box {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        60px;

    align-items:
        center;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    padding:
        50px;

    box-shadow:
        var(--shadow);

}


.about-spices-box h2 {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        42px;

    margin-bottom:
        12px;

}


.about-spices-box p {

    color:
        var(--grey);

    max-width:
        560px;

}


.spice-list {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

}


.spice-list span {

    background:
        var(--cream);

    color:
        var(--green);

    border:
        1px solid #ead3b7;

    padding:
        11px 16px;

    border-radius:
        30px;

    font-weight:
        700;

    font-size:
        14px;

}



/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .about-story-grid,
    .about-experience-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    .about-story-image {

        max-width:
            650px;

        margin:
            auto;

    }


    .about-values-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .about-experience-image {

        max-width:
            650px;

        margin:
            auto;

    }


    .about-spices-box {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }

}



@media (max-width: 650px) {

    .about-hero {

        min-height:
            320px;

    }


    .about-hero h1 {

        font-size:
            45px;

    }


    .about-hero p {

        font-size:
            16px;

    }


    .about-story-section,
    .about-values-section,
    .about-experience-section {

        padding:
            70px 0;

    }


    .about-story-image img,
    .about-experience-image img {

        height:
            400px;

    }


    .about-image-badge {

        width:
            125px;

        height:
            125px;

        right:
            -5px;

    }


    .about-values-grid {

        grid-template-columns:
            1fr;

    }


    .about-spices-section {

        padding:
            55px 0;

    }


    .about-spices-box {

        padding:
            30px 22px;

    }


    .about-spices-box h2 {

        font-size:
            34px;

    }

}




/* =========================================================
   CONTACT PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.contact-hero {

    min-height:
        390px;

    display:
        flex;

    align-items:
        center;

    text-align:
        center;

    position:
        relative;

    color:
        white;

    overflow:
        hidden;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(226, 173, 66, 0.28),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #611018,
            var(--maroon),
            #531016
        );

}


.contact-hero::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    opacity:
        0.08;

    background-image:

        radial-gradient(
            circle,
            white 1.5px,
            transparent 1.5px
        );

    background-size:
        28px 28px;

}


.contact-hero-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        820px;

}


.contact-hero h1 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(48px, 7vw, 72px);

    line-height:
        1.1;

    margin-bottom:
        18px;

}


.contact-hero p {

    font-size:
        18px;

    color:
        #f7ded5;

    max-width:
        680px;

    margin:
        auto;

}



/* ---------------------------------------------------------
   CONTACT INFO CARDS
--------------------------------------------------------- */

.contact-info-section {

    padding:
        80px 0;

    background:
        var(--cream);

}


.contact-info-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        22px;

}


.contact-info-card {

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        17px;

    padding:
        30px 24px;

    text-align:
        center;

    box-shadow:
        0 10px 35px rgba(72, 40, 22, 0.08);

    transition:
        0.3s;

}


.contact-info-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

}


.contact-card-icon {

    width:
        65px;

    height:
        65px;

    border-radius:
        50%;

    margin:
        0 auto 17px;

    background:
        #f9e9d6;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    font-size:
        28px;

}


.contact-info-card h3 {

    font-family:
        Georgia, serif;

    color:
        var(--maroon);

    font-size:
        22px;

    margin-bottom:
        10px;

}


.contact-info-card p {

    color:
        var(--grey);

    font-size:
        14px;

    min-height:
        65px;

}


.contact-info-card a {

    display:
        inline-block;

    color:
        var(--green);

    font-weight:
        800;

    margin-top:
        10px;

}


.contact-info-card a:hover {

    color:
        var(--orange);

}


.contact-info-card strong {

    color:
        var(--green);

    font-size:
        17px;

}



/* ---------------------------------------------------------
   CONTACT MAIN
--------------------------------------------------------- */

.contact-main-section {

    padding:
        100px 0;

    background:
        white;

}


.contact-main-grid {

    display:
        grid;

    grid-template-columns:
        1.08fr 0.92fr;

    gap:
        70px;

    align-items:
        stretch;

}


/* Form */

.contact-form-area h2 {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        clamp(40px, 5vw, 52px);

    line-height:
        1.1;

    margin-bottom:
        15px;

}


.contact-intro {

    color:
        var(--grey);

    max-width:
        600px;

    margin-bottom:
        35px;

}


.contact-form {

    display:
        flex;

    flex-direction:
        column;

    gap:
        19px;

}


.contact-form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px;

}


.contact-field {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;

}


.contact-field label {

    color:
        var(--dark);

    font-weight:
        700;

    font-size:
        14px;

}


.contact-field input,
.contact-field textarea,
.contact-field select {

    width:
        100%;

    border:
        1px solid var(--border);

    background:
        var(--light-cream);

    border-radius:
        9px;

    padding:
        14px 15px;

    font-family:
        inherit;

    font-size:
        15px;

    color:
        var(--dark);

    outline:
        none;

    transition:
        0.2s;

}


.contact-field textarea {

    resize:
        vertical;

    min-height:
        150px;

}


.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 3px rgba(226,173,66,0.15);

    background:
        white;

}


.contact-submit {

    border:
        none;

    cursor:
        pointer;

    align-self:
        flex-start;

    min-width:
        190px;

}



/* ---------------------------------------------------------
   CONTACT SIDE BOX
--------------------------------------------------------- */

.contact-details-area {

    display:
        flex;

}


.contact-side-box {

    width:
        100%;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(226,173,66,0.16),
            transparent 28%
        ),

        var(--green);

    color:
        white;

    border-radius:
        22px;

    padding:
        45px;

    box-shadow:
        var(--shadow);

}


.contact-side-box h2 {

    font-family:
        Georgia, serif;

    font-size:
        42px;

    line-height:
        1.1;

    margin-bottom:
        20px;

}


.contact-side-box > p {

    color:
        #d4e4dc;

    margin-bottom:
        35px;

}


.contact-side-details {

    display:
        flex;

    flex-direction:
        column;

    gap:
        25px;

    margin-bottom:
        35px;

}


.contact-side-item {

    display:
        flex;

    gap:
        15px;

    align-items:
        flex-start;

}


.contact-side-item > span {

    width:
        45px;

    height:
        45px;

    min-width:
        45px;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    border-radius:
        10px;

    background:
        rgba(255,255,255,0.1);

    font-size:
        20px;

}


.contact-side-item strong {

    color:
        var(--gold);

    display:
        block;

    margin-bottom:
        3px;

}


.contact-side-item p {

    color:
        #d3e2da;

    font-size:
        14px;

}



/* ---------------------------------------------------------
   MAP
--------------------------------------------------------- */

.contact-map-section {

    padding:
        95px 0;

    background:
        var(--cream);

}


.contact-map {

    border-radius:
        20px;

    overflow:
        hidden;

    background:
        white;

    border:
        6px solid white;

    box-shadow:
        var(--shadow);

}


.contact-map iframe {

    display:
        block;

}



/* =========================================================
   CONTACT PAGE RESPONSIVE
========================================================= */

@media (max-width: 950px) {


    .contact-info-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .contact-main-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    .contact-side-box {

        max-width:
            700px;

    }

}



@media (max-width: 650px) {


    .contact-hero {

        min-height:
            320px;

    }


    .contact-hero h1 {

        font-size:
            44px;

    }


    .contact-hero p {

        font-size:
            16px;

    }


    .contact-info-section,
    .contact-main-section,
    .contact-map-section {

        padding:
            65px 0;

    }


    .contact-info-grid {

        grid-template-columns:
            1fr;

    }


    .contact-info-card p {

        min-height:
            auto;

    }


    .contact-form-row {

        grid-template-columns:
            1fr;

    }


    .contact-side-box {

        padding:
            32px 24px;

    }


    .contact-side-box h2 {

        font-size:
            35px;

    }


    .contact-submit {

        width:
            100%;

    }


    .contact-map iframe {

        height:
            360px;

    }

}



/* =========================================================
   MENU PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.menu-hero {

    min-height:
        410px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    text-align:
        center;

    color:
        white;

    background:

        linear-gradient(
            rgba(75, 10, 17, 0.78),
            rgba(75, 10, 17, 0.85)
        ),

        url(
            "https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1600&q=85"
        );

    background-size:
        cover;

    background-position:
        center;

}


.menu-hero::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:

        radial-gradient(
            circle at center,
            transparent 25%,
            rgba(25, 5, 8, 0.35)
        );

}


.menu-hero-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        850px;

}


.menu-hero h1 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(50px, 7vw, 74px);

    line-height:
        1.05;

    margin-bottom:
        18px;

}


.menu-hero p {

    color:
        #f6ddd4;

    font-size:
        18px;

    max-width:
        720px;

    margin:
        auto;

}



/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.menu-intro-section {

    padding:
        80px 0 45px;

    background:
        var(--cream);

}


.menu-category-links {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        11px;

}


.menu-category-links a {

    background:
        white;

    border:
        1px solid var(--border);

    color:
        var(--green);

    padding:
        10px 18px;

    border-radius:
        30px;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        0.25s;

}


.menu-category-links a:hover {

    background:
        var(--maroon);

    border-color:
        var(--maroon);

    color:
        white;

}



/* ---------------------------------------------------------
   MENU SECTIONS
--------------------------------------------------------- */

.menu-section {

    padding:
        90px 0;

    background:
        white;

    scroll-margin-top:
        90px;

}


.menu-section-alt {

    background:
        var(--cream);

}


.menu-section-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        25px;

    margin-bottom:
        40px;

    padding-bottom:
        20px;

    border-bottom:
        2px solid var(--border);

}


.menu-section-heading h2 {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        clamp(38px, 5vw, 50px);

    line-height:
        1.1;

}


.menu-section-icon {

    width:
        65px;

    height:
        65px;

    min-width:
        65px;

    border-radius:
        50%;

    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    background:
        #f8e7d3;

    font-size:
        29px;

}



/* ---------------------------------------------------------
   BASIC MENU ITEMS
--------------------------------------------------------- */

.menu-items-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px 30px;

}


.menu-item {

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        13px;

    padding:
        22px 22px;

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        20px;

    transition:
        0.25s;

}


.menu-section:not(.menu-section-alt) .menu-item {

    background:
        var(--light-cream);

}


.menu-item:hover {

    transform:
        translateY(-3px);

    border-color:
        #e4c18a;

    box-shadow:
        0 10px 30px rgba(72,40,22,0.08);

}


.menu-item h3 {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        20px;

    margin-bottom:
        5px;

}


.menu-item p {

    color:
        var(--grey);

    font-size:
        13px;

    max-width:
        480px;

}


.menu-price {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        19px;

    font-weight:
        bold;

    white-space:
        nowrap;

}


.menu-spacing-top {

    margin-top:
        35px;

}



/* ---------------------------------------------------------
   FEATURED CURRY CARDS
--------------------------------------------------------- */

.menu-feature-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        24px;

}


.menu-feature-card {

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        16px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);

    transition:
        0.3s;

}


.menu-feature-card:hover {

    transform:
        translateY(-7px);

}


.menu-feature-image {

    height:
        225px;

    position:
        relative;

    overflow:
        hidden;

}


.menu-feature-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        0.4s;

}


.menu-feature-card:hover img {

    transform:
        scale(1.05);

}


.menu-feature-image span {

    position:
        absolute;

    top:
        14px;

    left:
        14px;

    background:
        var(--green);

    color:
        white;

    padding:
        6px 11px;

    border-radius:
        25px;

    font-size:
        11px;

    font-weight:
        700;

}


.menu-feature-content {

    padding:
        22px;

}


.menu-title-row {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-start;

    gap:
        12px;

    margin-bottom:
        8px;

}


.menu-title-row h3 {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        22px;

}


.menu-title-row strong {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        18px;

    white-space:
        nowrap;

}


.menu-feature-content p {

    color:
        var(--grey);

    font-size:
        14px;

}



/* ---------------------------------------------------------
   BIRYANI SPLIT
--------------------------------------------------------- */

.menu-split {

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        50px;

    align-items:
        stretch;

}


.menu-split-image {

    position:
        relative;

    overflow:
        hidden;

    border-radius:
        18px;

    box-shadow:
        var(--shadow);

}


.menu-split-image img {

    width:
        100%;

    height:
        100%;

    min-height:
        470px;

    object-fit:
        cover;

}


.menu-image-label {

    position:
        absolute;

    left:
        20px;

    right:
        20px;

    bottom:
        20px;

    background:
        rgba(255,255,255,0.94);

    border-radius:
        12px;

    padding:
        16px 18px;

    display:
        flex;

    flex-direction:
        column;

}


.menu-image-label strong {

    color:
        var(--maroon);

    font-family:
        Georgia, serif;

    font-size:
        20px;

}


.menu-image-label span {

    color:
        var(--grey);

    font-size:
        12px;

}


.menu-split-items {

    display:
        flex;

    flex-direction:
        column;

    gap:
        14px;

}



/* ---------------------------------------------------------
   GRILL SECTION
--------------------------------------------------------- */

.menu-grill-section {

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(226,173,66,0.15),
            transparent 30%
        ),

        var(--green);

    color:
        white;

}


.menu-heading-light {

    border-bottom-color:
        rgba(255,255,255,0.15);

}


.menu-heading-light h2 {

    color:
        white;

}


.menu-grill-section .menu-section-icon {

    background:
        rgba(255,255,255,0.1);

}


.menu-item-dark {

    background:
        rgba(255,255,255,0.07) !important;

    border-color:
        rgba(255,255,255,0.13);

}


.menu-item-dark:hover {

    background:
        rgba(255,255,255,0.11) !important;

    border-color:
        rgba(226,173,66,0.5);

}


.menu-item-dark h3 {

    color:
        var(--gold);

}


.menu-item-dark p {

    color:
        #d3e2da;

}


.menu-item-dark .menu-price {

    color:
        white;

}



/* ---------------------------------------------------------
   MENU NOTE
--------------------------------------------------------- */

.menu-note-section {

    padding:
        75px 0;

    background:
        var(--cream);

}


.menu-note-box {

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    box-shadow:
        var(--shadow);

    padding:
        40px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        40px;

}


.menu-note-box h2 {

    color:
        var(--green);

    font-family:
        Georgia, serif;

    font-size:
        34px;

    margin-bottom:
        7px;

}


.menu-note-box p {

    color:
        var(--grey);

}



/* =========================================================
   MENU RESPONSIVE
========================================================= */

@media (max-width: 950px) {


    .menu-feature-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .menu-split {

        grid-template-columns:
            1fr;

    }


    .menu-split-image img {

        height:
            450px;

        min-height:
            auto;

    }

}



@media (max-width: 700px) {


    .menu-hero {

        min-height:
            330px;

    }


    .menu-hero h1 {

        font-size:
            45px;

    }


    .menu-hero p {

        font-size:
            16px;

    }


    .menu-intro-section {

        padding:
            65px 0 35px;

    }


    .menu-section {

        padding:
            70px 0;

    }


    .menu-section-heading {

        align-items:
            flex-start;

    }


    .menu-section-icon {

        width:
            52px;

        height:
            52px;

        min-width:
            52px;

        font-size:
            23px;

    }


    .menu-items-grid {

        grid-template-columns:
            1fr;

    }


    .menu-feature-grid {

        grid-template-columns:
            1fr;

    }


    .menu-item {

        padding:
            19px;

    }


    .menu-split-image img {

        height:
            380px;

    }


    .menu-note-box {

        padding:
            30px 24px;

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .menu-note-box .button {

        width:
            100%;

    }

}





/* =========================================================
   GALLERY PAGE
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.gallery-hero {

    min-height:
        410px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    text-align:
        center;

    color:
        white;

    background:

        linear-gradient(
            rgba(62, 11, 16, 0.76),
            rgba(84, 12, 20, 0.86)
        ),

        url(
            "https://images.unsplash.com/photo-1505253758473-96b7015fcd40?auto=format&fit=crop&w=1600&q=85"
        );

    background-size:
        cover;

    background-position:
        center 48%;

}


.gallery-hero::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:

        radial-gradient(
            circle at center,
            transparent 25%,
            rgba(30, 5, 9, 0.38)
        );

}


.gallery-hero-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        800px;

}


.gallery-hero h1 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(50px, 7vw, 74px);

    line-height:
        1.05;

    margin-bottom:
        18px;

}


.gallery-hero p {

    color:
        #f6ded5;

    max-width:
        680px;

    margin:
        auto;

    font-size:
        18px;

}



/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.gallery-intro-section {

    padding:
        85px 0 45px;

    background:
        var(--cream);

}



/* ---------------------------------------------------------
   FILTER BUTTONS
--------------------------------------------------------- */

.gallery-filter {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        10px;

}


.gallery-filter-button {

    border:
        1px solid var(--border);

    background:
        white;

    color:
        var(--green);

    border-radius:
        30px;

    padding:
        10px 20px;

    font-family:
        inherit;

    font-size:
        13px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        0.25s;

}


.gallery-filter-button:hover {

    background:
        var(--green);

    color:
        white;

    border-color:
        var(--green);

}


.gallery-filter-button.active {

    background:
        var(--maroon);

    border-color:
        var(--maroon);

    color:
        white;

}



/* ---------------------------------------------------------
   GALLERY SECTION
--------------------------------------------------------- */

.gallery-section {

    background:
        var(--cream);

    padding:
        25px 0 100px;

}


.gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows:
        280px;

    gap:
        18px;

}


.gallery-item {

    position:
        relative;

    overflow:
        hidden;

    border-radius:
        16px;

    box-shadow:
        0 10px 30px rgba(72, 40, 22, 0.13);

    transition:
        all 0.35s ease;

}


.gallery-item.gallery-large {

    grid-column:
        span 2;

}


.gallery-item.gallery-wide {

    grid-column:
        span 2;

}


.gallery-item.gallery-tall {

    grid-row:
        span 2;

}


.gallery-item img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        0.5s;

}


.gallery-item:hover img {

    transform:
        scale(1.08);

}


.gallery-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        flex-end;

    padding:
        25px;

    color:
        white;

    background:

        linear-gradient(
            to top,
            rgba(31, 12, 8, 0.86),
            rgba(31, 12, 8, 0.08) 65%
        );

    opacity:
        0;

    transition:
        0.3s;

}


.gallery-item:hover .gallery-overlay {

    opacity:
        1;

}


.gallery-overlay span {

    display:
        block;

    color:
        var(--gold);

    font-size:
        11px;

    text-transform:
        uppercase;

    font-weight:
        800;

    letter-spacing:
        2px;

    margin-bottom:
        4px;

}


.gallery-overlay h3 {

    font-family:
        Georgia, serif;

    font-size:
        25px;

}


.gallery-hidden {

    display:
        none;

}



/* ---------------------------------------------------------
   MESSAGE SECTION
--------------------------------------------------------- */

.gallery-message-section {

    background:
        var(--green);

    padding:
        85px 0;

    position:
        relative;

    overflow:
        hidden;

}


.gallery-message-section::before {

    content:
        "";

    position:
        absolute;

    width:
        380px;

    height:
        380px;

    border-radius:
        50%;

    right:
        -130px;

    top:
        -150px;

    background:
        rgba(226, 173, 66, 0.10);

}


.gallery-message-box {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        50px;

    color:
        white;

}


.gallery-message-box h2 {

    font-family:
        Georgia, serif;

    font-size:
        clamp(36px, 5vw, 50px);

    line-height:
        1.1;

    margin-bottom:
        12px;

}


.gallery-message-box p {

    max-width:
        650px;

    color:
        #d4e5dc;

}



/* =========================================================
   GALLERY RESPONSIVE
========================================================= */

@media (max-width: 950px) {


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows:
            260px;

    }


    .gallery-item.gallery-large,
    .gallery-item.gallery-wide {

        grid-column:
            span 1;

    }


    .gallery-message-box {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}



@media (max-width: 650px) {


    .gallery-hero {

        min-height:
            330px;

    }


    .gallery-hero h1 {

        font-size:
            45px;

    }


    .gallery-hero p {

        font-size:
            16px;

    }


    .gallery-intro-section {

        padding:
            65px 0 35px;

    }


    .gallery-section {

        padding-bottom:
            70px;

    }


    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            280px;

    }


    .gallery-item.gallery-large,
    .gallery-item.gallery-wide {

        grid-column:
            span 1;

    }


    .gallery-item.gallery-tall {

        grid-row:
            span 1;

    }


    .gallery-overlay {

        opacity:
            1;

        padding:
            20px;

    }


    .gallery-message-section {

        padding:
            65px 0;

    }


    .gallery-message-box .button {

        width:
            100%;

    }

}