@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Tenor+Sans&family=Prata&family=Sacramento&family=La+Belle+Aurore&family=Charmonman:wght@400;700&family=Covered+By+Your+Grace&family=Fuzzy+Bubbles:wght@400;700&family=Reenie+Beanie&family=Over+the+Rainbow&family=Grape+Nuts&family=Montserrat:wght@700&family=Yuji+Boku&display=swap');

@font-face {
    font-family: 'Qurova';
    src: url('fonts/qurova.bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary: #D4845C;
    /* Terracotta Orange */
    --primary-dark: #C0392B;
    /* Pomegranate Red */
    --secondary: #3D2817;
    /* Espresso/Chocolate Brown */
    --bg-light: #FDF9F5;
    /* Warm Cream/White */
    --bg-accent: #F9F1EA;
    /* Soft Peach */
    --text-dark: #3D2817;
    /* Espresso Brown */
    --text-muted: #6B5B4E;
    /* Dark Taupe */
    --white: #FFFFFF;
    --shadow: 0 15px 45px rgba(61, 40, 23, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-max: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
}

h1,
h2,
h3,
h4 {
    font-family: 'Prata', serif;
}

/* Global Refinements */
ul,
li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

a,
button {
    text-decoration: none !important;
    outline: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

/* Section Spacing & Transitions */
.section-tight-bottom {
    padding-bottom: 20px;
    /* Ultra-compact integration; deep scoop overlap */
}

.section-tight-top {
    padding-top: 160px;
}

.section-white {
    background-color: var(--white);
}

.section-menu {
    background-color: var(--bg-light);
    /* Restored Warm Cream for high contrast */
}

.text-center {
    text-align: center;
}

.section-peach {
    background-color: var(--bg-accent);
    position: relative;
    overflow: hidden;
}

/* Center-Glow Spotlight Transition: One-way spill from White to Peach */
.section-peach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 180px;
    background: radial-gradient(ellipse at center, var(--white) 0%, transparent 80%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

/* Background Shapes */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 132, 92, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
}

.blob-2 {
    bottom: -5%;
    right: -5%;
    background: radial-gradient(circle, rgba(61, 40, 23, 0.05) 0%, transparent 70%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(253, 249, 245, 0.98);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.section-title span {
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    margin-top: 0.8rem;
}

.section-title h2 {
    font-family: 'Prata', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-top: 0;
    margin-bottom: 0;
    color: var(--secondary);
    font-weight: 400;
    line-height: 1.25;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-center {
    text-align: center;
}

.elegant-heading {
    font-family: 'Prata', serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background:
        /* The Coiled Texture */
        repeating-radial-gradient(circle at center,
            transparent 0,
            transparent 3px,
            rgba(0, 0, 0, 0.15) 3px,
            rgba(0, 0, 0, 0.15) 4px),
        /* The Radiating Basketweave */
        repeating-conic-gradient(from 0deg at center,
            var(--secondary) 0deg 15deg,
            #4A6741 15deg 20deg,
            #C0392B 20deg 25deg,
            #E6B325 25deg 30deg);
    border: 1.8px solid #C0392B;
    /* Traditional Red Outer Rim */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-icon i {
    filter: drop-shadow(0 0 1.5px rgba(61, 40, 23, 0.9));
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(61, 40, 23, 0.2), transparent 70%);
    pointer-events: none;
}

.logo-text {
    font-family: 'Qurova', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: var(--secondary);
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(3px);
    /* Lowering for visual balance with circle */
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
}

.nav-links li a {
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    /* Increased size for presence */
    letter-spacing: 2px;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-order-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-order-nav {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    background-color: white;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-order-nav:hover {
    transform: translateY(-2px);
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 5px 15px rgba(212, 132, 92, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 1001;
    margin-left: 20px;
}

/* Stylish Hero */
.hero {
    min-height: calc(100vh + 440px);
    display: flex;
    align-items: flex-start;
    /* Changed from center to prevent text shifting beyond boundaries */
    justify-content: center;
    text-align: center;
    padding-top: 230px;
    /* Safe space for navbar (100px) + margin */
    background: url('hero.png') no-repeat center center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    position: relative;
    overflow: hidden;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    /* Slightly adjusted for new asset */
}

@media (max-width: 900px) {
    .hero {
        background-image: url('hero-mobile.png');
    }
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: none;
    /* Removed problematic translate that was cutting off text */
}

.hero-content h1 {
    font-family: 'Yuji Boku', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 6vw, 3rem);
    /* Reduced size */
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    /* Sophisticated Weight: Reduced stroke thickness */
    -webkit-text-stroke: 0.2px var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: rotate(-1deg);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.hero-content h1 span {
    display: block;
}

.hero-desc-box {
    max-width: 680px;
    /* More room for sharper text flow */
    margin: 0 auto;
}

.hero-desc-box p {
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    /* Increased for clarity */
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
    /* Bolder weight for sharpness */
    letter-spacing: 2px;
    line-height: 1.6;
    /* Sharpened shadow: Less blur, more definition */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 10px rgba(0, 0, 0, 0.4);
    opacity: 1;
    /* Full clarity */
}

/* Secondary Page Header (About, Menu, etc.) */
.page-header {
    padding: 220px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.page-header-bg {
    background: linear-gradient(rgba(61, 40, 23, 0.7), rgba(61, 40, 23, 0.7)), url('hero.png') no-repeat center center;
    background-size: cover;
}

.page-header-menu {
    background: linear-gradient(rgba(61, 40, 23, 0.65), rgba(61, 40, 23, 0.65)), url('menu-header.png') no-repeat center center;
    background-size: cover;
}

.page-header-about {
    background: linear-gradient(rgba(61, 40, 23, 0.65), rgba(61, 40, 23, 0.65)), url('about-header-popcorn.png') no-repeat center center;
    background-size: cover;
}

.page-header h2 {
    color: var(--white) !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    font-size: clamp(3.5rem, 8vw, 5rem);
    margin-top: 1.5rem;
}

.page-header span {
    color: var(--primary) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(212, 132, 92, 0.3);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    background: white;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 10px 20px rgba(212, 132, 92, 0.2);
}

/* Feature Grid Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5.5rem;
}

.feature-box {
    background: var(--white);
    padding: 3.2rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(61, 40, 23, 0.1);
}

.feature-image-container {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 2rem;
}

.feature-img-circular {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--bg-accent);
    top: -15px;
    right: -15px;
    z-index: 1;
    opacity: 0.8;
    transition: var(--transition);
}

.decoration-circle.left {
    left: -15px;
    right: auto;
}

.decoration-circle.bottom {
    top: auto;
    bottom: -15px;
}

.decoration-circle.peach {
    background: #F0E6DD;
}

.decoration-circle.accent {
    background: var(--bg-accent);
}

.feature-box:hover .feature-img-circular {
    transform: scale(1.08) rotate(2deg);
    border-color: var(--primary);
}

.feature-box:hover .decoration-circle {
    transform: translate(15px, -15px);
    background: var(--primary);
    opacity: 0.15;
}

.feature-graphic {
    display: none;
    /* Hide old icons */
}

/* Image "Flare" Enhancement */
.image-flair-container {
    position: relative;
    padding: 30px;
    z-index: 1;
    /* Create stacking context for ::before flair */
}

.image-flair-container::before {
    content: '';
    position: absolute;
    top: 30px;
    /* Refined compact offset */
    left: 30px;
    /* Refined compact offset */
    width: 96%;
    height: 96%;
    background: var(--primary);
    opacity: 0.18;
    /* Restored 'Boutique' opacity for crispness */
    border-radius: 40px;
    z-index: -1;
    transform: rotate(4deg);
    border: 3px solid var(--primary);
    transition: var(--transition);
}

.image-flair-container:hover::before {
    transform: translate(8px, -8px) rotate(5deg) scale(1.02);
    /* More subtle boutique drift */
    opacity: 0.22;
}

.flared-img {
    width: 100%;
    height: 540px;
    /* Refined compact height */
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.image-flair-container:hover .flared-img {
    transform: translate(-5px, 5px) rotate(-1deg) scale(1.01);
    /* Very slight opposing movement */
}

/* Dish Layout */
.dish-row {
    display: flex;
    gap: 4.5rem;
    /* Increased for better balance and breathing room */
    align-items: center;
    margin-bottom: 10rem;
}

.dish-row:last-child {
    margin-bottom: 2rem;
    /* Reduced for a tighter footer transition */
}

.dish-row-narrow {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.2rem;
}

.dish-row:nth-child(even) {
    flex-direction: row-reverse;
}

.dish-text {
    flex: 1.0;
    /* Balanced weight */
}

.dish-description {
    font-size: 1.05rem;
    /* Small reduction for better column rhythm */
    color: var(--text-muted);
    margin: 1.8rem 0 2.5rem;
    line-height: 1.8;
}

.dish-img-col {
    flex: 1.0;
    /* Balanced weight */
}

@media (max-width: 900px) {
    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-order-container {
        flex: none;
    }

    .btn-order-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dish-row {
        flex-direction: column !important;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Page Components */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: -30px auto 3.5rem;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 850px;
    position: relative;
    z-index: 100;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1.5px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(212, 132, 92, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    padding-bottom: 120px;
}

.menu-item-bright {
    background: var(--white);
    border-radius: 24px;
    /* Restored deeper floating shadow for better definition */
    box-shadow: 0 12px 35px rgba(61, 40, 23, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.menu-item-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-img {
    width: 180px;
    height: 180px;
    margin: 2.5rem auto 0.5rem;
    border-radius: 50%;
    overflow: visible;
    background: var(--bg-accent);
    position: relative;
    border: 4px solid var(--white);
    box-shadow: 0 10px 25px rgba(61, 40, 23, 0.1);
    flex-shrink: 0;
    z-index: 2;
}

.menu-item-img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    transition: var(--transition);
    z-index: -1;
}

.menu-item-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    pointer-events: none;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item-bright:hover .menu-item-img::before {
    transform: rotate(45deg) scale(1.1);
    opacity: 0.4;
    border-style: solid;
}

.menu-item-bright:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(61, 40, 23, 0.12);
}

.menu-item-bright:hover .menu-item-img img {
    transform: scale(1.08);
}

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(212, 132, 92, 0.03) 0%, rgba(212, 132, 92, 0.08) 100%),
        repeating-linear-gradient(45deg, rgba(212, 132, 92, 0.01) 0px, rgba(212, 132, 92, 0.01) 1px, transparent 1px, transparent 12px),
        var(--bg-accent);
    color: var(--primary);
    opacity: 0.4;
    font-size: 2.8rem;
    position: relative;
}

.no-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(212, 132, 92, 0.15);
    border-radius: 50%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    /* Tighter gap */
}

.menu-item-title {
    font-size: 1.25rem;
    /* Reduced from 1.5rem to prevent 3-line wrap */
    color: var(--secondary);
    font-family: 'Prata', serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    flex: 1;
    padding-right: 0.5rem;
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.82rem;
    /* Even more compact for premium look */
    background: var(--bg-accent);
    padding: 0.2rem 0.5rem;
    /* Tighter box */
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    /* Prevent price from wrapping */
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.menu-item-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Tenor Sans', sans-serif;
}

.story-text {
    font-size: 1.05rem;
    /* Reduced for editorial elegance */
    color: var(--text-muted);
    line-height: 1.8;
}

.story-paragraph {
    margin-bottom: 1.8rem;
}

/* Footer Unified with Curvature */
footer {
    background-color: var(--bg-accent);
    padding: 240px 0 40px;
    /* Increased to 240px for ultra-breathable finish */
    color: var(--text-dark);
    line-height: 1.5;
    position: relative;
    border-top: none;
    /* Removed straight border to allow curve to reign */
}

/* Subtle Footer Grain/Texture */
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* Concave Valley Arch: Master architectural scoop into the foundation */
.footer-cap {
    position: absolute;
    top: -110px;
    /* Half height overlap */
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    /* Ultra-wide for smooth but deep arc */
    height: 220px;
    /* Extreme high-impact concavity */
    background-color: var(--bg-accent);
    /* Standardized to background-color */
    border-radius: 0 0 50% 50%;
    z-index: 1;
    /* Multilayered shadow for pronounced depth and presence */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.08),
        inset 0 -15px 40px rgba(212, 132, 92, 0.1);
    border-bottom: 2.5px solid rgba(212, 132, 92, 0.35);
    /* Strong edge visibility */
}

/* Color Matching Utility Classes: Critical for seamless blending */
.footer-cap-cream {
    background-color: var(--bg-light) !important;
    /* Matches Cream sections */
    border-bottom-color: rgba(212, 132, 92, 0.15);
}

.footer-cap-white {
    background-color: var(--white) !important;
    /* Matches pure White sections */
    border-bottom-color: rgba(212, 132, 92, 0.1);
}

.footer-cap-peach {
    background-color: var(--bg-accent) !important;
    /* Matches Peach sections */
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.2rem;
    /* Reduced space before copyright */
    align-items: start;
    /* Fixes alignment of columns to the top */
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Tenor Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    font-size: 1.4rem !important;
    color: var(--primary) !important;
    margin-bottom: 0 !important;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--primary-dark) !important;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
    margin-bottom: 0.6rem;
    display: block;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    /* Reduced top padding */
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Specific section spacing: Home Sharing Section */
#sharing-section {
    padding-bottom: 220px !important;
}

/* Specific section spacing: Home Content Header */
#delicacies-section {
    padding-top: 200px !important;
}