/* =========================================
   SANDY'S CAFE — COMPLETE STYLESHEET
========================================= */

:root {
    --green: #234d32;
    --medium-green: #2b5b3c;
    --dark-green: #173522;
    --deep-green: #10281a;

    --gold: #ffd700;
    --soft-gold: #f5c542;

    --red: #ff4b3e;
    --dark-red: #7a2119;
    --blue: #1769e0;

    --white: #ffffff;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    min-height: 100vh;

    background-color: var(--green);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}

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

a {
    color: inherit;
}


/* =========================================
   WOODEN BORDER AROUND WEBSITE
========================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 99999;
    pointer-events: none;

    border: 7px solid transparent;

    border-image: linear-gradient(
        90deg,
        #3f210f,
        #8a522c,
        #c08045,
        #5a2d16,
        #9b6335,
        #3f210f
    ) 1;

    box-shadow:
        inset 0 0 0 1px #ffd700,
        inset 0 0 0 3px rgba(45, 22, 8, 0.70);
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: sticky;
    top: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 21px 6%;

    background-color: rgba(23, 53, 34, 0.97);

    border-bottom: 2px solid var(--gold);

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.28);
}

.logo {
    color: var(--gold);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

nav a {
    color: var(--white);

    font-size: 16px;
    font-weight: bold;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

nav a:hover {
    color: var(--gold);

    transform: translateY(-2px);
}


/* =========================================
   HERO SECTION
========================================= */

.hero {
    position: relative;
    isolation: isolate;

    min-height: 760px;

    padding: 62px 5% 40px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 56%,
            rgba(255, 215, 0, 0.07),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--medium-green) 0%,
            var(--green) 50%,
            #1a3e29 100%
        );
}


/* =========================================
   HERO TEXT
========================================= */

.hero-text {
    position: relative;

    z-index: 20;

    width: 100%;
    max-width: 1120px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================
   MAIN SANDY'S CAFE TITLE
========================================= */

.hero-title {
    position: relative;

    display: inline-block;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(67px, 8vw, 122px);

    font-weight: bold;

    line-height: 0.94;

    letter-spacing: -2px;

    background: linear-gradient(
        135deg,
        #ff4b3e 0%,
        #ff4b3e 25%,
        #ffd700 48%,
        #ffd700 66%,
        #ff4b3e 100%
    );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    -webkit-text-stroke:
        1px rgba(83, 25, 18, 0.95);

    text-shadow:
        1px 1px 0 #8d2a20,
        2px 2px 0 #84241c,
        3px 3px 0 #762018,
        4px 4px 0 #681a14,
        5px 5px 0 #55140f,
        8px 10px 8px rgba(0, 0, 0, 0.45);

    filter:
        drop-shadow(
            0 6px 5px rgba(0, 0, 0, 0.28)
        );
}


.hero-title::before {
    content: attr(data-text);

    position: absolute;
    inset: 0;

    z-index: -1;

    transform: translate(6px, 7px);

    color: #6b1b15;

    -webkit-text-fill-color: #6b1b15;

    -webkit-text-stroke:
        1px #49100c;

    opacity: 0.85;

    pointer-events: none;
}


/* HERO SUBTITLE */

.hero-subtitle {
    margin: 20px 0 28px;

    color: var(--white);

    font-size: 22px;
    font-weight: bold;

    letter-spacing: 0.2px;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.55);
}


/* =========================================
   VIEW OUR MENU BUTTON
========================================= */

.menu-button {
    position: relative;

    z-index: 25;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    background-color: var(--gold);

    color: var(--dark-green);

    border: 2px solid #d9af00;
    border-radius: 9px;

    font-size: 16px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.34);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.menu-button:hover {
    background-color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 9px 18px rgba(0, 0, 0, 0.40);
}


/* =========================================
   HERO VISUAL AREA
========================================= */

.hero-visual {
    position: absolute;
    inset: 0;

    z-index: 5;

    pointer-events: none;
}


/* =========================================
   SD123 SANDWICH + JUICE
========================================= */

.hero-food {
    position: absolute;

    right: 0.5%;
    bottom: 6%;

    width: min(62vw, 900px);

    height: auto;

    max-height: 505px;

    object-fit: contain;
    object-position: right bottom;

    border: none;

    padding: 0;

    background: transparent;

    filter:
        drop-shadow(
            0 16px 14px rgba(0, 0, 0, 0.26)
        );

    z-index: 5;
}


/* =========================================
   logo123.png
   MOVED HIGHER TO STAY CLEAR OF FOOD
========================================= */

.hero-logo {
    position: absolute;

    left: 4.5%;

    /* MOVED HIGHER */
    bottom: 15%;

    width: clamp(300px, 24vw, 396px);

    aspect-ratio: 1 / 1;

    background: linear-gradient(
        135deg,
        #ff4b3e 0%,
        #ff4b3e 24%,
        #ffd700 48%,
        #ffd700 70%,
        #ff4b3e 100%
    );

    -webkit-mask-image:
        url("./logo123.png");

    mask-image:
        url("./logo123.png");

    -webkit-mask-repeat:
        no-repeat;

    mask-repeat:
        no-repeat;

    -webkit-mask-position:
        center;

    mask-position:
        center;

    -webkit-mask-size:
        contain;

    mask-size:
        contain;

    filter:
        drop-shadow(2px 2px 0 #92291f)
        drop-shadow(4px 4px 0 #762018)
        drop-shadow(6px 6px 0 #591611)
        drop-shadow(
            9px 10px 8px rgba(0, 0, 0, 0.40)
        );

    z-index: 8;
}


/* =========================================
   GOOD FOOD, GOOD MOOD
========================================= */

.hero-phrase {
    position: absolute;

    right: 12%;
    bottom: 1.5%;

    z-index: 30;

    margin: 0;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
    font-weight: bold;

    letter-spacing: 4px;

    text-transform: uppercase;

    white-space: nowrap;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.65);
}


/* =========================================
   CAFE HIGHLIGHTS
========================================= */

.feature-strip {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding: 30px 6%;

    background-color: var(--deep-green);

    border-top:
        2px solid var(--gold);

    border-bottom:
        2px solid var(--gold);
}

.feature-card {
    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 125px;

    padding: 22px;

    background-color: var(--dark-green);

    border:
        1px solid rgba(255, 215, 0, 0.70);

    border-radius: 14px;

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--gold);
}

.feature-icon {
    flex: 0 0 auto;

    font-size: 37px;
}

.feature-card h2 {
    margin: 0 0 7px;

    color: var(--gold);

    font-size: 20px;
}

.feature-card p {
    margin: 0;

    color: var(--white);

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================
   GENERAL SECTION HEADINGS
========================================= */

.section-heading {
    max-width: 900px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-heading h2 {
    margin: 10px 0 15px;

    color: var(--soft-gold);

    font-size: 48px;
}

.section-heading > p:not(.small-heading) {
    margin: 0;

    color: var(--white);

    font-size: 20px;

    line-height: 1.6;
}

.small-heading {
    margin: 0;

    color: var(--white);

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* =========================================
   MENU
========================================= */

.menu-section {
    padding: 80px 7%;

    background-color: var(--green);
}

.menu-categories {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    max-width: 1200px;

    margin: 0 auto;
}

.menu-category {
    padding: 30px;

    background-color: var(--dark-green);

    border:
        2px solid var(--gold);

    border-radius: 16px;

    box-shadow:
        0 0 9px rgba(255, 215, 0, 0.20),
        0 8px 18px rgba(0, 0, 0, 0.20);
}

.menu-category h3 {
    margin: 0;

    padding-bottom: 15px;

    color: var(--red);

    border-bottom:
        2px solid var(--gold);

    font-size: 28px;
}

.menu-item {
    padding: 17px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.15);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h4 {
    margin: 0 0 7px;

    color: var(--gold);

    font-size: 20px;
}

.menu-item p {
    margin: 0;

    color: var(--white);

    font-size: 16px;

    line-height: 1.6;
}


/* COFFEE + DRINKS FULL WIDTH */

.menu-category-wide {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    column-gap: 30px;
}

.menu-category-wide > h3 {
    grid-column: 1 / -1;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    padding: 80px 7%;

    background-color: var(--green);
}

.about-content {
    max-width: 900px;

    margin: 0 auto;

    padding: 48px 52px;

    text-align: center;

    background-color: var(--dark-green);

    border:
        2px solid var(--gold);

    border-radius: 17px;

    box-shadow:
        0 9px 22px rgba(0, 0, 0, 0.28);
}

.about-content .small-heading {
    color: var(--gold);
}

.about-content h2 {
    display: inline-block;

    margin: 10px 0 20px;

    background:
        linear-gradient(
            90deg,
            var(--red) 0%,
            var(--gold) 50%,
            var(--red) 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    font-size: 45px;
}

.about-content p:not(.small-heading) {
    margin: 15px 0;

    color: var(--white);

    font-size: 19px;

    line-height: 1.7;
}


/* =========================================
   PHOTO GALLERY
========================================= */

.gallery-section {
    padding: 80px 7%;

    background-color: var(--deep-green);

    border-top:
        2px solid rgba(255, 215, 0, 0.65);

    border-bottom:
        2px solid rgba(255, 215, 0, 0.65);
}

.gallery-heading h2 {
    color: var(--red);

    font-size: 48px;
}

.gallery-heading .small-heading {
    color: var(--gold);
}

.photo-gallery {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.photo-placeholder {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    aspect-ratio: 4 / 3;

    padding: 25px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.07),
            transparent 65%
        ),
        linear-gradient(
            145deg,
            var(--medium-green),
            var(--dark-green)
        );

    color: var(--gold);

    border:
        2px solid var(--gold);

    border-radius: 16px;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-align: center;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.photo-placeholder:hover {
    transform:
        translateY(-6px)
        scale(1.015);

    border-color:
        var(--white);

    box-shadow:
        0 13px 24px rgba(0, 0, 0, 0.36);
}

.photo-icon {
    display: block;

    font-size: 45px;

    line-height: 1;
}

.gallery-instagram {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}

.gallery-instagram-button,
.gallery-instagram-button:visited {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 22px;

    background: linear-gradient(
        45deg,
        #feda75 0%,
        #fa7e1e 25%,
        #d62976 50%,
        #962fbf 75%,
        #4f5bd5 100%
    );

    color: var(--white);

    border:
        2px solid var(--gold);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gallery-instagram-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 9px 18px rgba(0, 0, 0, 0.38);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 80px 4%;

    background-color: var(--green);
}

.contact-section .section-heading h2 {
    color: var(--red);
}

.contact-boxes {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
}

.contact-box {
    min-width: 0;

    padding: 24px 20px;

    background-color: var(--dark-green);

    border:
        2px solid var(--gold);

    border-radius: 16px;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.25);
}

.contact-box h3 {
    margin: 0 0 20px;

    color: var(--gold);

    font-size:
        clamp(19px, 1.8vw, 23px);
}

.contact-box p {
    margin: 0 0 18px;

    color: var(--white);

    font-size:
        clamp(14px, 1.3vw, 17px);

    line-height: 1.6;
}

.contact-address span {
    white-space: nowrap;
}

.contact-hours span {
    white-space: nowrap;
}


/* =========================================
   CONTACT BUTTONS
========================================= */

.contact-button,
.contact-button:visited {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: max-content;
    max-width: 100%;

    padding: 12px 19px;

    margin-top: 5px;

    background-color: var(--blue);

    color: var(--white);

    border:
        2px solid var(--gold);

    border-radius: 9px;

    font-size: 17px;
    font-weight: bold;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 5px 11px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* MOVING TAP FINGER */

.contact-button::after {
    content: "👆";

    display: inline-block;

    margin-left: 4px;

    font-size: 20px;

    animation:
        tapMove 1.1s ease-in-out infinite;
}

.contact-button:hover {
    background-color: #0b4fba;

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 15px rgba(0, 0, 0, 0.36);
}

@keyframes tapMove {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }
}


/* =========================================
   GET DIRECTIONS — PIN + CAR
========================================= */

.directions-button {
    gap: 7px;
}

.direction-pin,
.direction-car {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    font-size: 18px;

    line-height: 1;
}


/* =========================================
   CONTACT ACTIONS + INSTAGRAM
========================================= */

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;
}

.instagram-button,
.instagram-button:visited {
    background: linear-gradient(
        45deg,
        #feda75 0%,
        #fa7e1e 25%,
        #d62976 50%,
        #962fbf 75%,
        #4f5bd5 100%
    );

    color: var(--white);

    padding-left: 14px;
    padding-right: 14px;

    font-size: 13px;

    letter-spacing: 0.2px;
}

.instagram-button:hover {
    background: linear-gradient(
        45deg,
        #fa7e1e 0%,
        #d62976 40%,
        #962fbf 70%,
        #4f5bd5 100%
    );
}


/* INSTAGRAM LOGO */

.instagram-icon {
    display: block;

    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    color: currentColor;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 48px 7% 22px;

    background-color: var(--dark-green);

    color: var(--white);

    border-top:
        3px solid var(--gold);
}

.footer-content {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: center;

    gap: 35px;

    max-width: 1200px;

    margin: 0 auto;
}

.footer-brand h2 {
    margin: 0 0 10px;

    background: none;

    color: var(--red);

    -webkit-text-fill-color:
        var(--red);

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45);
}

.footer-brand p {
    margin: 7px 0;

    color: var(--white);

    font-size: 16px;
}

.footer-address {
    margin: 7px 0 10px;

    color: var(--white);

    font-size: 16px;

    line-height: 1.7;

    white-space: nowrap;
}

.footer-info a,
.footer-links a {
    color: var(--gold);

    font-weight: bold;

    text-decoration: none;
}

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
}

.footer-info a:hover,
.footer-links a:hover {
    color: var(--white);
}


/* FOOTER GET DIRECTIONS */

.footer-directions {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    width: fit-content;
}


/* FOOTER INSTAGRAM */

.footer-instagram {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    width: fit-content;
}

.footer-instagram .instagram-icon {
    width: 19px;
    height: 19px;
}


.copyright {
    margin: 35px 0 0;

    padding-top: 20px;

    color: var(--white);

    border-top:
        1px solid rgba(255, 255, 255, 0.20);

    font-size: 14px;

    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .hero {
        min-height: 730px;
    }

    .hero-title {
        font-size:
            clamp(60px, 8.5vw, 98px);
    }

    .hero-food {
        right: -8%;

        width:
            min(76vw, 780px);

        max-height: 465px;
    }


    /* LOGO MOVED HIGHER */

    .hero-logo {
        left: 4%;

        bottom: 20%;

        width: 276px;
    }

    .hero-phrase {
        right: 8%;

        font-size: 20px;
    }

    .feature-strip {
        gap: 14px;
    }


    /* GALLERY */

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


    /* CONTACT */

    .contact-boxes {
        gap: 12px;
    }

    .contact-box {
        padding: 21px 16px;
    }

    .contact-button {
        padding: 11px 14px;

        font-size: 15px;
    }

    .instagram-button {
        font-size: 12px;
    }

    .instagram-icon {
        width: 17px;
        height: 17px;
    }
}


/* =========================================
   PHONE VERSION
========================================= */

@media (max-width: 700px) {

    html {
        scroll-padding-top: 135px;
    }


    /* NAVIGATION */

    .navbar {
        flex-direction: column;

        gap: 14px;

        padding: 17px 20px;
    }

    nav {
        flex-wrap: wrap;

        justify-content: center;

        gap: 12px 20px;
    }


    /* HERO */

    .hero {
        min-height: 770px;

        padding:
            43px 18px 25px;
    }

    .hero-title {
        font-size:
            clamp(43px, 11.5vw, 67px);

        letter-spacing: -1px;

        -webkit-text-stroke:
            0.7px rgba(83, 25, 18, 0.95);

        text-shadow:
            1px 1px 0 #8d2a20,
            2px 2px 0 #762018,
            3px 3px 0 #591611,
            5px 7px 6px rgba(0, 0, 0, 0.42);
    }

    .hero-title::before {
        transform:
            translate(3px, 4px);
    }

    .hero-subtitle {
        margin-top: 16px;

        margin-bottom: 24px;

        font-size: 18px;
    }

    .menu-button {
        padding: 14px 24px;

        font-size: 15px;
    }

    .hero-food {
        right: -20%;

        bottom: 8%;

        width: 122%;

        max-width: none;

        max-height: 420px;
    }


    /* =====================================
       MOBILE LOGO
       MOVED MUCH HIGHER TO CLEAR SANDWICH
    ===================================== */

    .hero-logo {
        left: 4%;

        bottom: 35%;

        width: 222px;

        max-width: 44vw;
    }


    .hero-phrase {
        right: 5%;

        bottom: 2%;

        font-size: 15px;

        letter-spacing: 2px;
    }


    /* FEATURE CARDS */

    .feature-strip {
        grid-template-columns: 1fr;

        padding: 25px 20px;
    }


    /* SECTIONS */

    .menu-section,
    .about-section,
    .gallery-section,
    .contact-section {
        padding: 55px 20px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .section-heading > p:not(.small-heading) {
        font-size: 17px;
    }


    /* MENU */

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 23px;
    }

    .menu-category h3 {
        font-size: 24px;
    }

    .menu-category-wide {
        grid-column: auto;

        grid-template-columns: 1fr;
    }

    .menu-category-wide > h3 {
        grid-column: auto;
    }


    /* ABOUT */

    .about-content {
        padding: 32px 23px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p:not(.small-heading) {
        font-size: 17px;
    }


    /* GALLERY */

    .gallery-heading h2 {
        font-size: 38px;
    }

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

        gap: 14px;
    }

    .photo-placeholder {
        padding: 15px;

        font-size: 12px;

        letter-spacing: 0.8px;
    }

    .photo-icon {
        font-size: 35px;
    }

    .gallery-instagram-button {
        padding: 12px 17px;

        font-size: 12px;
    }


    /* CONTACT */

    .contact-boxes {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .contact-address span,
    .contact-hours span {
        white-space: normal;
    }

    .contact-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-actions .contact-button {
        margin-top: 0;
    }

    .instagram-button {
        font-size: 12px;
    }

    .instagram-icon {
        width: 17px;
        height: 17px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-address {
        white-space: nowrap;

        font-size: 14px;
    }

    .footer-directions,
    .footer-instagram {
        justify-content: center;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 430px) {

    .hero-title {
        font-size: 43px;
    }

    .hero-food {
        right: -24%;

        width: 132%;
    }


    /* KEEP LOGO ABOVE SANDWICH */

    .hero-logo {
        width: 180px;

        bottom: 38%;
    }

    .hero-phrase {
        font-size: 13px;

        letter-spacing: 1.5px;
    }


    /* GALLERY */

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

    .photo-placeholder {
        aspect-ratio: 16 / 10;

        font-size: 13px;
    }

    .gallery-instagram-button {
        width: 100%;

        font-size: 11.5px;
    }


    /* INSTAGRAM */

    .instagram-button {
        padding-left: 11px;
        padding-right: 11px;

        font-size: 11.5px;
    }

    .instagram-icon {
        width: 16px;
        height: 16px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .contact-button::after {
        animation: none;
    }

    .photo-placeholder,
    .gallery-instagram-button {
        transition: none;
    }
}


/* ==================================================
   MASTER SANDY'S CAFE COLOR OVERRIDE
================================================== */

.logo,
.hero-title,
.about-content h2,
.contact-section .section-heading h2,
.footer-brand h2 {

    background: linear-gradient(
        90deg,
        #E84432 0%,
        #F47B28 18%,
        #FFB51B 35%,
        #FFD700 50%,
        #FFB51B 65%,
        #F47B28 82%,
        #E84432 100%
    ) !important;

    background-clip: text !important;
    -webkit-background-clip: text !important;

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;

    text-shadow:
        1px 1px 0 #A93421,
        2px 2px 0 #84271C,
        3px 3px 0 #642017,
        4px 5px 5px rgba(0, 0, 0, 0.32) !important;
}


/* ==================================================
   GALLERY TITLE — SAME SANDY'S BRAND GRADIENT
================================================== */

.gallery-heading h2 {

    background: linear-gradient(
        90deg,
        #E84432 0%,
        #F47B28 18%,
        #FFB51B 35%,
        #FFD700 50%,
        #FFB51B 65%,
        #F47B28 82%,
        #E84432 100%
    );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    text-shadow:
        1px 1px 0 #A93421,
        2px 2px 0 #84271C,
        3px 3px 0 #642017,
        4px 5px 5px rgba(0, 0, 0, 0.32);
}


/* ==================================================
   MAIN HERO TITLE — STRONGER 3D
================================================== */

.hero-title {
    -webkit-text-stroke: 1px #8B2E1E !important;

    text-shadow:
        1px 1px 0 #B53A25,
        2px 2px 0 #A93421,
        3px 3px 0 #912C1D,
        4px 4px 0 #762318,
        5px 5px 0 #5F1C14,
        7px 9px 7px rgba(0, 0, 0, 0.38) !important;

    filter: none !important;
}


.hero-title::before {
    content: attr(data-text) !important;

    position: absolute !important;
    inset: 0 !important;

    z-index: -1 !important;

    transform: translate(5px, 6px) !important;

    color: #7B271B !important;
    -webkit-text-fill-color: #7B271B !important;

    opacity: 0.70 !important;

    pointer-events: none !important;
}


.hero-title::after {
    display: none !important;

    content: none !important;
}


/* ==================================================
   LOGO123 — SAME RED/GOLD FADE
================================================== */

.hero-logo {

    background: linear-gradient(
        90deg,
        #E84432 0%,
        #F47B28 18%,
        #FFB51B 35%,
        #FFD700 50%,
        #FFB51B 65%,
        #F47B28 82%,
        #E84432 100%
    ) !important;

    -webkit-mask-image:
        url("./logo123.png") !important;

    mask-image:
        url("./logo123.png") !important;

    -webkit-mask-repeat:
        no-repeat !important;

    mask-repeat:
        no-repeat !important;

    -webkit-mask-position:
        center !important;

    mask-position:
        center !important;

    -webkit-mask-size:
        contain !important;

    mask-size:
        contain !important;

    filter:
        drop-shadow(2px 2px 0 #A93421)
        drop-shadow(4px 4px 0 #762318)
        drop-shadow(7px 8px 6px rgba(0, 0, 0, 0.38)) !important;
}


/* PHONE */

@media (max-width: 700px) {

    .hero-title {
        -webkit-text-stroke:
            0.7px #8B2E1E !important;
    }
}

