:root {
    /* Light Theme (Bright Candy Pop) */
    --primary: #ff3366;
    /* Slightly punchier pink */
    --primary-light: #ffebf0;
    --text-dark: #2d3436;
    /* Darker text for contrast on bright bg */
    --text-gray: #636e72;
    /* New Radiant Background: Peach -> Pink -> Sunshine */
    --background: linear-gradient(135deg, #ffd1ff 0%, #fad0c4 50%, #ffd1ff 100%);
    /* Alternative Super Bright: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); */

    --glass-bg: rgba(255, 255, 255, 0.65);
    /* More opaque glass for contrast */
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(255, 105, 135, 0.15);
    /* Pinkish shadow */
    --card-bg: rgba(255, 255, 255, 0.75);

    --font-script: 'Dancing Script', cursive;
    --font-serif: 'Abril Fatface', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    /* Dark Theme (Reference Card: Dark Slate/Teal with PINK Text) */
    --primary: #ff99cc;
    /* Soft Pastel Pink for readability on dark teal */
    --primary-light: #2c3e50;
    --text-dark: #ecf0f1;
    --text-gray: #bdc3c7;

    /* Background: Deep Dark Slate/Teal from the card */
    --background: linear-gradient(135deg, #102e34 0%, #1a3c40 100%);

    --glass-bg: rgba(26, 60, 64, 0.7);
    --glass-border: rgba(255, 153, 204, 0.3);
    /* Pink border hint */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --card-bg: rgba(44, 62, 80, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

body {
    background: var(--background);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    /* Sticky navbar */
    top: 20px;
    z-index: 1000;
    margin: 0 20px;
    border-radius: 50px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    /* Optimal height with text */
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-left: 10px;
    letter-spacing: 1px;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 10px;
    border-radius: 10px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    border: 2px solid white;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.theme-toggle:hover {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.1);
}

/* Sidebar Socials */
.social-sidebar {
    position: fixed;
    /* Fixed for scrolling */
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    /* Higher z-index to be on top */
}

.social-sidebar a {
    color: var(--text-dark);
    font-size: 1rem;
    background: var(--glass-bg);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.social-sidebar a:hover {
    color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary);
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    position: fixed;
    left: 70px;
    /* Moved right to avoid overlapping with social icons */
    bottom: 40px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    font-weight: 600;
    z-index: 5;
}

/* Hero Wrapper */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    padding: 60px 5% 0 10%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    background: var(--glass-bg);
    /* Glass effect on text block */
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.sub-headline {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary);
    /* Pop color */
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--text-dark);
}

.main-headline {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.highlight-pink {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(245, 59, 87, 0.4);
    text-decoration: underline;
    text-decoration-color: var(--text-dark);
    text-decoration-thickness: 3px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-pill-fill {
    background-color: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(245, 59, 87, 0.4);
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-pill-fill:hover {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
    box-shadow: 0 0 15px var(--primary);
}

.btn-pill-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    transition: var(--transition);
}

.btn-pill-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: inset 0 0 10px rgba(245, 59, 87, 0.2);
}

/* Image Side & Glass Shapes */
.hero-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.image-arch-frame {
    width: 380px;
    height: 420px;
    border-radius: 190px 190px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--glass-border);
    /* Offset border effect */
    border: 8px solid rgba(255, 255, 255, 0.3);
}

.main-cake-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    /* Smooth fade */
}



.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Floating Elements Glass */
.badge-circle {
    position: absolute;
    top: 50px;
    left: -40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--glass-shadow);
    z-index: 10;
    border: 1px solid var(--glass-border);
}

.badge-text {
    transform: rotate(-15deg);
    line-height: 1.2;
    color: var(--text-dark);
}

.rating-box {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid white;
}

.add-cart-btn:hover {
    transform: scale(1.1);
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Floating Strawberries/Decor */
.floating-item {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    z-index: 1;
    animation: floating 4s ease-in-out infinite;
}

/* ... existing floating styles ... */

/* Menu Section Glass */
.menu-section {
    padding: 80px 5%;
    background: transparent;
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-shadow: 2px 2px 0px var(--glass-border);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin: 50px auto;
}

.menu-img-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.menu-img-container img {
    transition: transform 0.5s ease;
}

.menu-img-container:hover img {
    transform: scale(1.1);
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.add-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    z-index: 10;
}

.add-cart-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.single-menu-item {
    background: var(--card-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.single-menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(245, 59, 87, 0.3);
}

.menu-img-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Section Glass */
.about-section {
    padding: 30px 5%;
    /* Tight, small section */
    margin: 20px 5%;
    /* Further reduced margin */
    border-radius: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 30px;
    /* Further reduced gap */
    position: relative;
    box-shadow: var(--glass-shadow);
    /* Ensure background logo stays inside */
    overflow: hidden;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 300px;
}

/* Founder Image Slider */
.founder-slider {
    width: 320px;
    height: 250px;
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Shining Effect */
.founder-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Background Logo Overlay */
.bg-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    /* Smaller watermark */
    height: 300px;
    background-image: url('logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.15;
    /* More visible watermark */
    pointer-events: none;
    z-index: 0;
}

.about-img-frame {
    width: 100%;
    max-width: 550px;
    /* Increased Width */
    height: 380px;
    /* Increased Height */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.1);
    /* Smaller shadow */
    border: 4px solid white;
    background-color: #ddd;
    position: relative;
    /* Essential for shine */
}

/* Shine Effect for About Image */
.about-img-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollGallery 20s linear infinite;
}

.gallery-item {
    width: 250px;
    /* Adjust based on image size */
    height: 250px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scroll half the duplicated width */
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: white;
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-gray);
}

/* Menu Animation */
.animated-card {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.love-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.love-btn {
    background: white;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.love-btn i {
    color: var(--primary);
}

/* ... existing about/process/contact styles ... */

/* Process Section */
.process-section {
    padding: 100px 5%;
    background: transparent;
    text-align: center;
}

/* Redesigned Menu Filters */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 59, 87, 0.3);
    border-color: var(--primary);
}

/* Add to Cart Button Overlay */
.add-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(60px);
    /* Hidden initially */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-menu-item:hover .add-cart-btn {
    transform: translateY(0);
}

.add-cart-btn:hover {
    background: var(--primary);
    color: white;
}

/* Redesigned Process Section */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 40px 20px;
    position: relative;
    border-radius: 30px;
    background: var(--card-bg);
    /* Glass */
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(245, 59, 87, 0.4);
}

.step-connector {
    display: none;
    /* Hidden on mobile */
    width: 50px;
    height: 2px;
    background: var(--primary);
    align-self: center;
    opacity: 0.5;
}

@media (min-width: 969px) {
    .step-connector {
        display: block;
    }
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--glass-shadow);
}

/* Contact Section Glass */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    margin: 0 5% 50px 5%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.contact-info-box {
    flex: 1;
    padding: 80px 5%;
    background: linear-gradient(135deg, #1e272e 0%, #485460 100%);
    /* Always glasy dark */
    color: white;
}

/* Map adjustment */
.map-box {
    flex: 1;
    min-width: 400px;
    min-height: 500px;
    background: #eee;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 40px 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dark);
}

/* Mobile Navigation and Responsive Styles */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    order: 3;
}

/* Responsive Media Queries */
@media (max-width: 968px) {

    /* Navbar Adjustment */
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        width: 95%;
        margin: 10px auto;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.95);
        /* More solid for mobile header */
    }

    .hamburger {
        display: block;
        color: var(--primary);
        /* Pink Icon */
    }

    .logo {
        order: 1;
    }

    .nav-icons {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
        gap: 15px;
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: var(--primary);
        /* PINK BACKGROUND */
        margin-top: 20px;
        padding: 30px;
        border-radius: 20px;
        border: 2px solid white;
        gap: 20px;
        order: 4;
        /* Force to bottom */
        box-shadow: 0 10px 30px rgba(245, 59, 87, 0.4);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links li a {
        font-size: 1.3rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
        color: white;
        /* White text on pink */
        font-weight: 700;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .search-icon {
        display: none;
        /* Hide search on mobile */
    }

    /* Hero Section */
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
        margin-top: 20px;
        min-height: auto;
    }

    .social-sidebar,
    .vertical-text {
        display: none;
        /* Hide side elements */
    }

    .hero-text {
        margin-bottom: 50px;
        width: 100%;
        padding: 30px 20px;
        max-width: 100%;
    }

    .sub-headline {
        justify-content: center;
        font-size: 1.8rem;
    }

    .sub-headline::after {
        display: none;
    }

    .main-headline {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-pill-fill,
    .btn-pill-outline {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }

    /* Hero Image */
    .hero-image-side {
        width: 100%;
        justify-content: center;
        height: auto;
        margin-top: 20px;
    }

    .image-arch-frame {
        width: 90%;
        max-width: 350px;
        height: 400px;
        border-radius: 175px 175px 20px 20px;
    }

    .badge-circle {
        left: 0;
        top: 20px;
        width: 80px;
        height: 80px;
        font-size: 0.6rem;
    }

    .rating-box {
        bottom: 20px;
        right: 0;
        padding: 10px 15px;
    }

    /* Floating items mobile */
    .floating-item {
        display: none;
    }

    /* About Section Mobile */
    .about-section {
        flex-direction: column;
        margin: 40px 15px;
        padding: 40px 20px;
        gap: 40px;
    }

    .about-img-frame {
        height: 300px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        text-align: justify;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 30px;
        padding: 0 10px;
    }

    /* Contact Section */
    .contact-wrapper {
        flex-direction: column;
        margin: 20px 15px;
    }

    .contact-info-box {
        padding: 40px 20px;
    }

    .contact-info-box h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .map-box {
        min-height: 300px;
        min-width: 100%;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    footer {
        padding: 30px 20px;
    }
}