:root {
    /* Primary Colors */
    --primary-dark: #bf8553;
    --primary-accent: #ff273e;
    --primary-warning: #a2d3f1;
    --red-border: #ff273e;
    --off-black: #797c85;
    --louise-green: #92a048;
    --tina_blue: #9cb8e0;
    
    /* Background Colors */
    --bg-primary: #f5e123;
    --bg-secondary: #ecf0f1;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Text Colors */
    --text-primary: #010101;
    --text-secondary: #555555;
    --text-light: #ffffff;
    
    /* Navigation Colors */
    --nav-bg: var(--primary-dark);
    --nav-text: var(--text-light);
    --nav-hover: var(--primary-accent);
    
    /* Footer Colors */
    --footer-bg: var(--tina_blue);
    --footer-text: var(--text-light);
    --footer-link: var(--primary-accent);
    
    /* Burger of the Day Colors */
    --burger-card-bg: var(--off-black);
    --burger-card-border: var(--red-border);
    --burger-title-color: #ffffff;
    --burger-name-color: #ffffff;
    --burger-name-bg: rgba(139, 69, 19, 0.3);
    --burger-subtitle-color: #cccccc;
}

.menu-item-separator {
    flex-grow: 1;
    border-bottom: 1px dotted var(--text-primary);
    margin: 0 1rem;
    height: 1px;
    align-self: flex-end;
    margin-bottom: 0.2em; /* Align with text baseline */
}

.margin-Top {
    margin-top: 10lvh;
}

.menu-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}
.halftoneoverlay {
    z-index: 1000;
    opacity: .4;
    pointer-events: none;
    mix-blend-mode: multiply;
    background-image: url(Images/overlay-halftone.jpg);
    background-position: 0 0;
    background-size: auto;
    position: fixed;
    inset: 0%;
}
.menu-column-item {
        background: var(--bg-secondary);
    border: 3px solid var(--text-primary);
    border-radius: 20px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 10px;
}
.fan-site_disclaimer {
        -webkit-text-stroke-width: 0px;
}

.menu-section-title {
    font-family: var(--font-bobs-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-accent);
    padding-bottom: 0.5rem;
    text-shadow: -2px 2px 0 var(--text-primary);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-primary);
}

.dark-theme {
    /* Primary Colors - Dark Mode */
    --primary-dark: #1a252f;
    --primary-accent: #ff6b5b;
    --primary-warning: #ffa726;
    --brown-border: #A0522D;
    --off-black: #0f0f0f;
    
    /* Background Colors - Dark Mode */
    --bg-primary: #2c3e50;
    --bg-secondary: #34495e;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Text Colors - Dark Mode */
    --text-primary: #ecf0f1;
    --text-secondary: #bdc3c7;
    --text-light: #ffffff;
    
    /* Navigation Colors - Dark Mode */
    --nav-bg: var(--primary-dark);
    --nav-text: var(--text-light);
    --nav-hover: var(--primary-accent);
    
    /* Footer Colors - Dark Mode */
    --footer-bg: var(--primary-dark);
    --footer-text: var(--text-light);
    --footer-link: var(--primary-accent);
    
    /* Burger of the Day Colors - Dark Mode */
    --burger-card-bg: var(--off-black);
    --burger-card-border: var(--brown-border);
    --burger-title-color: #ffffff;
    --burger-name-color: #ffffff;
    --burger-name-bg: rgba(160, 82, 45, 0.4);
    --burger-subtitle-color: #cccccc;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Sticky Sections Scrolling */
.sticky_sections_wrapper {
    position: relative;
    margin-bottom: calc(70vh - 24px);
    /* Ensure it can contain absolutely positioned elements */
    overflow: visible;
}

.sticky_sections_wrapper section {
    min-height: 100vh;
    z-index: 1;
    overflow: hidden;
}


/* Sticky header for about section only */
.about-sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

/* Sticky header for menu section */
.menu-sticky-header {
    position: sticky;
    top: 0;
    z-index: 11; /* Higher z-index to replace about header */
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

/* Stack sections on top of each other with increasing z-index */
.sticky_sections_wrapper section:nth-child(1) {
    z-index: 1;
}

.sticky_sections_wrapper section:nth-child(2) {
    z-index: 2;
}

.sticky_sections_wrapper section:nth-child(3) {
    z-index: 3;
}

.sticky_sections_wrapper section:nth-child(4) {
    z-index: 4;
}
section.menu_outer_wrapper {
    z-index: 5;
}
/* Section wrapper styling for sticky effect */
.about_outer_wrapper,
.menu_outer_wrapper {
    background-color: var(--bg-primary);
    position: relative;
}

nav {
    padding: 1em;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

.menu_item {
    margin-top: calc(2em + 2px);
    padding: 0 2em;
    border: 4px solid var(--primary-accent);
    box-shadow: 0 0 0 2px, inset 0 0 0 2px;
    padding-top: 12px;
    background-color: color-mix(in srgb, var(--bg-primary) 50%, transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Safari support */
    /* Initial loading state - hidden off screen */
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Menu item loading animations */
.menu_item:nth-child(1) {
    transform: translateX(-100vw); /* Menu item slides from left */
}

.menu_item:nth-child(2) {
    transform: translateX(100vw); /* About item slides from right */
}

.menu_item.loaded {
    opacity: 1;
    transform: translateX(0);
}
.menu_item:hover {
    background-color: var(--text-light);
    transition: background-color 0.3s ease;
}

.menu_item a {
    color: var(--primary-accent);
    text-decoration: none;
    font-family: var(--font-bobs-primary);
    font-weight: 700;
    font-size: 3em;
    letter-spacing: 8px;
    line-height: .5;
    text-shadow: -2px 2px 0 var(--text-primary);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-primary);
}



.menu_item a.active {
    color: var(--nav-hover);
    font-weight: bold;
}

/* Navigation Theme Toggle */
.theme-toggle-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.theme-toggle-nav.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Theme Toggle Button in Navigation */
.theme-toggle {
    background-color: var(--primary-accent);
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    width: 60px;
    height: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.sun-icon, .moon-icon {
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Toggle slider effect */
.theme-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--text-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Dark theme toggle state */
.dark-theme .theme-toggle::before {
    transform: translateX(30px);
}

.dark-theme .sun-icon {
    opacity: 0.5;
}

.dark-theme .moon-icon {
    opacity: 1;
}

body:not(.dark-theme) .sun-icon {
    opacity: 1;
}

body:not(.dark-theme) .moon-icon {
    opacity: 0.5;
}

.landing-wrapper {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    position: relative;
    flex-direction: column;
    background: var(--bg-primary);
    transition: all 0.8s ease-in-out; /* Smooth transition for layout changes */
}

/* Clean Up Button */
.clean-up-button {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--bg-primary);
    color: var(--primary-accent);
    border: 3px solid var(--primary-accent);
    border-radius: 15px;
    padding: 12px 20px;
    font-family: var(--font-matt-b);
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.6s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    letter-spacing: 0.5px;
    /* Initial loading state - hidden */
    opacity: 0;
    transform: translateY(20px);
}

.clean-up-button.loaded {
    opacity: 1;
    transform: translateY(0);
}

.clean-up-button:hover {
    background-color: var(--primary-accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.clean-up-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.logo_wrapper {
    margin: 0 auto;
    z-index: 1;
    transition: all 0.8s ease-in-out; /* Smooth transition for layout changes */
    /* Initial loading state - positioned off-screen above */
    transform: translateY(-100vh);
    opacity: 0;
}

/* Logo drop animation */
.logo_wrapper.loaded {
    transform: translateY(0);
    opacity: 1;
    transition: all 1.2s ease-out; /* Smooth drop without bounce */
}
/* Burger of the Day Styles */
.b-o-t-d-depth {
    transform: skewY(-40deg);
    margin-top:10px;
    width: 20px;
    height: calc((100vw - 2rem) * 0.75 * 4 / 3);
    max-height: calc(400px * 4 / 3);
    border-left: 3px solid #000000;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    background-color: var(--red-border);
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 5px, -5px 5px 10px var(--bg-overlay);
}
.b-o-t-d-bottom {
   height: 20px;
    background: var(--burger-card-border);
    transform: skewX(-48deg);
    width: 100%;
    border-right: 3px solid #000000;
    border-bottom: 3px solid #000000;
    margin-left: -11px;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 9px, -5px 6px 10px var(--bg-overlay);
}

.whole-Frame {
    display: flex;
    opacity: 0;
    transition: all 0.8s ease-in-out; /* Smooth transition for both opacity and layout */
}

.whole-Frame.loaded {
    opacity: 1;
}
.burger-of-the-day-frame {
    padding: 40px;
    background: center / contain no-repeat url(Images/b-o-t-d-board.png);
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* 3/4 aspect ratio */
    aspect-ratio: 3 / 4;
    max-width: 450px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.burger-of-the-day-inner {
    background-color: var(--off-black);
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    gap: 1em;
}

.botd-svg {
    width: 100%;
    margin-top: 0px;
    margin-bottom: auto;
}

.burger-name {
    font-family: var(--font-christmas-chalk);
    font-size: 3em;
    font-weight: 400;
    color: var(--burger-name-color);
    margin-bottom: auto;
      line-height: 1;
    letter-spacing: 5px;
}

/* Splitting.js character animations for burger name */
.burger-name .char {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.3) translateY(20px);
}

/* Enhanced typewriter effect with bouncy animation */
@keyframes typewriterChar {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
}

.burger-title {
    font-family: var(--font-matt-b);
    color: var(--burger-title-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.burger-subtitle {
    font-family: var(--font-matt-b);
    color: var(--burger-subtitle-color);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.family-image-wrapper {
    max-height: 600px;
    width: 500px; /* Match the card stack width */
    aspect-ratio: 500 / 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: flex-start; /* Align items to top of container */
    padding: 20px 0; /* Add vertical padding */
}

/* Next Belcher Button */
.next-belcher-btn, .meet_belchers {
    background-color: var(--primary-accent);
    color: var(--text-light);
    border: 3px solid var(--text-primary);
    border-radius: 25px;
    padding: 12px 24px;
    font-family: var(--font-bobs-primary);
    font-size: 1.2rem;
    font-weight: 700;    
    text-transform: uppercase;
    z-index: 100;
}
.meet_belchers {
    margin-bottom: -40px;
}
.next-belcher-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    margin-top: -40px; /* Position above family card stack */
    position: relative; /* Remove any absolute positioning conflicts */
}
.next-belcher-btn:hover {
    background-color: var(--bg-primary);
    color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.next-belcher-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Custom Card Stack Styles */
.family-card-stack {
    width: 500px;
    height: 600px;
    max-width: 500px;
    max-height: 600px;
    position: relative;
    flex-shrink: 0; /* Prevent shrinking in flex container */
}

.family-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transform-origin: center;
    cursor: grab;
    background: var(--bg-primary);
    border: 4px solid var(--text-primary);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
    user-select: none;
    transition: all 0.4s ease;
    opacity: 1; /* All cards visible */
}

.family-card:active {
    cursor: grabbing;
}

.family-card .family-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Default card stacking */
.family-card {
    z-index: 1;
    transform: translateY(40px) rotate(-15deg);
}

/* The active (front) card */
.family-card.is--active {
    z-index: 3;
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* The second card */
.family-card.is--second {
    z-index: 2;
    transform: translateY(20px) rotate(10deg);
}

/* Legacy active class for compatibility */
.family-card.active {
    z-index: 3;
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Animation states for cycling */
.family-card.moving-out {
    opacity: 0;
    transform: translateX(-100%) rotate(-15deg) scale(0.9);
    transition: all 0.3s ease;
    z-index: 0; /* Move to back during exit */
}

.family-card.moving-in {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
    transition: all 0.4s ease;
    z-index: 10; /* Front during entrance */
}
.about-content-wrapper {
    padding: 2em;
    background: var(--bg-secondary);
    border: 3px solid var(--text-primary);
    border-radius: 20px;
    box-shadow: 0 .35em 0 #00000026;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
}

.card-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--text-light);
    font-family: var(--font-bobs-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.family-image-wrapper img {
    max-width: 70lvw;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.mini-about {
    background-color: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    align-items: center;
    justify-items: center;
    padding: 3em;
    box-shadow: inset 0 .35em 0 #00000026;
    min-height: 700px; /* Ensure enough height for family card stack */
    gap: 2rem; /* Add gap between grid items */
    margin-top: 0; /* Ensure proper connection with sticky header */
}


.mini-about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    padding: 1rem; /* Add padding for better text readability */
}

/* Responsive styling for mini-about section */
@media (max-width: 768px) {
    .mini-about {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        min-height: 900px; /* More height needed when stacked */
        gap: 3rem;
        padding: 2rem 1rem;
    }
    
    .family-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .family-card-stack {
        width: 100%;
        max-width: 400px;
        height: 480px; /* Slightly smaller on mobile */
    }
}

.menu-section {
    padding: 4rem 2rem;
    background-color: var(--bg-primary);
    text-align: center;
    min-height: 400px;
    transition: background-color 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5em;
}

.burger-of-day-banner {
    grid-column: 2 / -1; /* Span last two columns */
    background: var(--bg-secondary);
    border: 3px solid var(--text-primary);
    border-radius: 20px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin-bottom: 2rem;
    font-family: var(--font-bobs-primary);
       font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: -5px 3px 0 var(--text-primary);
        -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.burger-image-column {
    grid-column: 1 / 2; /* First column only */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.menu-burger-image {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.banner-subtext {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    -webkit-text-stroke-width: 0;
    margin-top: 15px;
    line-height: 1.4;
    text-align: center;
}

.menu-full-col-span {
    grid-column: 1 / -1; /* Span all three columns */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.food-menu-item {
    font-size: 1.5em;
    color: var(--text-primary);
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    padding: 0.5rem 0;
}
.menu-column-item .food-menu-item {
    width: 100%;
}
.menu-item-separator {
    flex-grow: 1;
    border-bottom: 6px dotted var(--text-primary);
    margin: 0 1rem;
    height: 1px;
    align-self: flex-end; 
    margin-bottom: 8px;/* Align with text baseline */
}


.menu-section h2 {
    font-family: var(--font-bobs-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}
footer {
    background-color: var(--footer-bg);
    color: var(--footer-link);
    text-align: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--text-primary);
    padding-top: 3em;
    position: fixed;
    bottom: 0;
}

/* Subtle shadow overlay at the top of footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Wave divider effect above footer */
.sticky_sections_wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    background-image: url('Images/wave.svg');
    background-repeat: repeat-x;
    height: 21px;
    background-size: 114px 22px;
    background-position: 0 bottom;
    background-color: transparent;
    transform: scaleY(-1);
    z-index: 1;
    animation: waveAnimation 2.5s linear infinite both;
}


/* Wave animation keyframes */
@keyframes waveAnimation {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 114px;
    }
}
footer p {
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.footer-links a:hover {
    text-decoration: underline;
}
img.footer-logo {
    width: 105%;
}
.footer_logo {
        margin-left: -5em;
    margin-bottom: -3%;
}
.inner_footer {
    display: flex;
    flex-flow: row wrap;
     justify-content: space-between;
    padding: 0 2em;
    align-items: last baseline;
        height: 100%;
    flex-grow: 1;
}
.footer_flex {
    margin-bottom: -3%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: last baseline;
}
.copyright {
    font-size: 0.8em;
    color: var(--text-primary);
    text-align: right;
}
.eat_at {
    font-size: 3em;
}
.address {
    width: 100%;
    font-size: 2em;
    text-transform: uppercase;
        display: flex;
    gap: 2em;
    justify-content: space-between;
}
.section_divider{
    background-image: url(Images/checkboard_divider.png);
    background-position: 0 0;
    background-size: auto 100%;
    width: 100%;
    border-top: 3px solid var(--text-primary);
    border-bottom: 3px solid var(--text-primary);
    height: 45px;
    box-shadow: 0 .35em 0 #00000026;
}
.about_header {
    text-align: center;
    color: var(--primary-accent);
    padding: 10px;
}
.about_header h2 {
    font-family: var(--font-bobs-primary);
    font-weight: 700;
    font-size: 5vw;
    text-shadow: -4px 4px 0 var(--text-primary);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: font-size 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease; /* Smooth transitions for size changes */
}

/* Reduced size state for sticky header */
.about_header h2.sticky-reduced {
    font-size: 2.5vw; /* Half the original size */
    text-shadow: -2px 2px 0 var(--text-primary); /* Proportionally smaller shadow */
    letter-spacing: 2px; /* Proportionally smaller letter spacing */
}
