/* 
   Treat Up Restaurant & Bar - Dark Luxury Theme 
   Based on User Palette: Obsidian Black, Deep Charcoal, Burnished Gold, Crimson Red
*/

:root {
    /* Color Palette */
    --color-obsidian: #0B0B0B;
    --color-charcoal: #1A1A1A;
    --color-gold: #C5A059;
    --color-gold-hover: #D4AF37;
    --color-crimson: #A31D1D;
    --color-offwhite: #F5F5F5;
    --color-gray: #888888;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacer-md: 2rem;
    --spacer-lg: 4rem;
    --spacer-xl: 6rem;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-obsidian);
    color: var(--color-offwhite);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    overflow: hidden;
}

.section {
    padding: var(--spacer-xl) 0;
}

.center {
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.sub-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.separator-center {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto var(--spacer-lg);
}

.separator-gold {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1.5rem 0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-crimson);
    color: var(--color-offwhite);
    border-color: var(--color-crimson);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-crimson);
    color: var(--color-crimson);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.link-arrow {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid transparent;
}

.link-arrow:hover {
    gap: 15px;
    border-bottom: 1px solid var(--color-gold);
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.9), transparent);
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-offwhite);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-offwhite);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book {
    border: 1px solid var(--color-gold);
    padding: 8px 18px;
    color: var(--color-gold);
}

.btn-book:hover {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
}

.btn-book::after {
    display: none;
}

/* Mobile Menu - Minimal Asymmetric Premium */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Right align for the 'short' line effect */
    width: 35px;
    /* Comfortable touch target */
    height: 35px;
    gap: 8px;
    /* Elegant spacing */
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.line {
    height: 2px;
    /* Solid but refined */
    background-color: var(--color-gold);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
}

.line-top {
    width: 100%;
    /* Full width (35px) */
    transform-origin: center;
}

.line-bottom {
    width: 24px;
    /* Shorter (~70%) */
    transform-origin: center;
}

/* Hover Effect: Only on devices that support hover to prevent sticky state on mobile */
@media (hover: hover) {
    .nav-toggle:hover .line-bottom {
        width: 100%;
        background-color: var(--color-offwhite);
    }

    .nav-toggle:hover .line-top {
        background-color: var(--color-offwhite);
    }
}

/* Active State: Form a clean X */
.nav-toggle.active {
    align-items: center;
    /* Center them for the X */
}

/* Ensure lines turn off-white only when active */
.nav-toggle.active .line {
    background-color: var(--color-offwhite);
}

.nav-toggle.active .line-top {
    transform: translateY(5px) rotate(45deg);
    width: 30px;
    /* Standardize width for X */
}

.nav-toggle.active .line-bottom {
    transform: translateY(-5px) rotate(-45deg);
    width: 30px;
    /* Standardize width for X */
}

/* ----------------------------- */
/* "Side Slide" Menu Overlay */
/* ----------------------------- */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        /* Align to right */
        bottom: 0;
        width: 100%;
        /* Or could be a drawer width like 300px */
        height: 100vh;
        background-color: var(--color-obsidian);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        /* Slide Logic */
        transform: translateX(100%);
        /* Start hidden to the right */
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
        /* Slide in */
    }

    /* Menu Items Fade In - Staggered */
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-list.active .nav-item {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    .nav-list.active .nav-item:nth-child(2) {
        transition-delay: 0.5s;
    }

    .nav-list.active .nav-item:nth-child(3) {
        transition-delay: 0.6s;
    }

    .nav-list.active .nav-item:nth-child(4) {
        transition-delay: 0.7s;
    }

    .nav-list.active .nav-item:nth-child(5) {
        transition-delay: 0.8s;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use CSS Gradient as fallback for the "Dark Luxury" look */
    background: radial-gradient(circle at center, #1f1f1f 0%, #000000 100%);
    z-index: -2;
}

/* Pseudo-element to simulate the generated image feel if missing */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Local Homepage Background */
    background-image: url('homepagebg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    /* Decreased opacity for subtle premium feel */
    filter: contrast(1.1) brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.3), var(--color-obsidian));
    z-index: -1;
}

.hero-text-wrapper {
    max-width: 800px;
}

.pre-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.main-title {
    font-size: 5.5rem;
    /* Slightly smaller for better fit */
    color: var(--color-offwhite);
    /* White text for main title */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.main-title em {
    font-style: italic;
    color: var(--color-offwhite);
    font-weight: 400;
    /* Clean white for 'to the best' as per ref image */
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-gray);
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    font-size: 1.5rem;
    /* Tiny but visible */
    color: var(--color-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* STORY SECTION */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.story-text strong,
.story-text em {
    color: var(--color-offwhite);
}

/* Updated Story Visuals to Grid */
.story-grid-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-frame-gold {
    border: 1px solid var(--color-gold);
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.image-frame-gold:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.img-caption {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mt-4 {
    margin-top: 2rem;
    margin-left: 4rem;
    /* Offset for dynamic look */
}

/* SPECIALS SECTION */
.specials {
    background-color: #121212;
    position: relative;
}

.specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05), transparent 40%);
    pointer-events: none;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.special-card {
    background: linear-gradient(145deg, #161616, #0e0e0e);
    border: 1px solid #222;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.special-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.special-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.special-card:hover::after {
    transform: scaleX(1);
}

.special-badge {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.special-content h3 {
    color: var(--color-offwhite);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.special-content p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-mini {
    display: flex;
    gap: 10px;
}

.social-mini a {
    color: var(--color-gray);
    font-size: 1.2rem;
}

.social-mini a:hover {
    color: var(--color-gold);
}

/* MENU SECTION */
.menu {
    background-color: var(--color-charcoal);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-gray);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.menu-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeUp 0.6s ease-out;
}

.menu-grid.active {
    display: grid;
}

.menu-item {
    background-color: var(--color-obsidian);
    padding: 0;
    /* Remove padding for image flush */
    border: 1px solid #222;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #222;
    transition: var(--transition);
}

.menu-item:hover .menu-img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.dish-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
    background-color: var(--color-obsidian);
}

.menu-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.dish-header h4 {
    font-size: 1.3rem;
    color: var(--color-offwhite);
}

.price {
    color: var(--color-gold);
    font-weight: 600;
}

/* Dietary Icons */
.dietary-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    border: 1px solid #333;
}

.badge-spicy {
    color: #ff4d4d;
    border-color: #ff4d4d;
}

.badge-veg {
    color: #4cd137;
    border-color: #4cd137;
}

.badge-vegan {
    color: #009432;
    border-color: #009432;
}

.badge-gf {
    color: #e1b12c;
    border-color: #e1b12c;
}

.badge-top {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    border-color: var(--color-gold);
}

.dish-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-footer {
    text-align: center;
    margin-top: 4rem;
}

/* GALLERIES / AMBIENCE */
.gallery-scroller {
    display: flex;
    overflow-x: auto;
    width: 100%;
}

.gallery-card {
    min-width: 25%;
    height: 500px;
    background-color: #333;
    position: relative;
    transition: var(--transition);
    filter: brightness(0.6);
    flex-shrink: 0;
}

.gallery-card:hover {
    filter: brightness(1);
}

.card-1 {
    background: radial-gradient(circle, #2c3e50, #000);
}

.card-2 {
    background: linear-gradient(45deg, var(--color-crimson), #000);
}

.card-3 {
    background: linear-gradient(135deg, var(--color-gold), #000);
}

.card-4 {
    background: linear-gradient(to bottom, #1a1a1a, #0b0b0b);
}

.overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--color-offwhite);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

/* CONTACT */
/* CONTACT CENTERED */
.centered-contact {
    display: flex;
    justify-content: center;
    background-color: var(--color-charcoal);
    border: 1px solid #222;
}

.center-text {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.info-item-center {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--color-offwhite);
    justify-content: center;
}

.info-item-center ion-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.justify-center {
    justify-content: center;
}

.contact-info {
    padding: 4rem;
    background-color: var(--color-charcoal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--color-gold);
}

.contact-desc {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--color-offwhite);
}

.info-item ion-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-gray);
    transition: var(--transition);
}

.social-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.contact-form-wrapper {
    padding: 4rem;
    background-color: rgba(26, 26, 26, 0.5);
    /* Slightly lighter */
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
}

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 15px;
    color: var(--color-offwhite);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-crimson);
}

/* FOOTER */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid #222;
    background-color: #080808;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-offwhite);
    letter-spacing: 1px;
}

.footer-info-list li {
    color: var(--color-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #222;
    padding-bottom: 5px;
}

.footer-info-list li span {
    color: var(--color-gold);
    font-weight: 500;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-contact-item ion-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-bottom-links a:hover {
    color: var(--color-offwhite);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-play-state: paused;
}

.fade-up.visible {
    animation-play-state: running;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card {
        min-width: 50%;
    }

    .specials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Hero Adjustments */
    .main-title {
        font-size: 3.2rem;
        /* Mobile friendly large text */
    }

    .tagline {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Section Spacing */
    .section {
        padding: var(--spacer-md) 0;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mt-4 {
        margin-left: 0;
        margin-top: 1rem;
    }

    .menu-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-info {
        padding: 2rem 1rem;
    }

    /* Mobile Navigation */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-obsidian);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        /* Above mobile menu */
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Footer & Contact */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 2.5rem;
    }
}