        :root {
            --primary: #2d6a4f;
            /* Healthy Green */
            --secondary: #d8f3dc;
            /* Light Green */
            --accent: #bc6c25;
            /* Earthy Brown/Orange */
            --dark: #1b4332;
            --light: #ffffff;
            --text-grey: #4a4a4a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* Craft Template Fonts */
            font-family: 'Roboto', 'Helvetica Neue', Arial, Verdana, sans-serif;
        }

        /* Mobile-First Typography */
        body {
            font-size: 14px;
            line-height: 1.7;
            font-weight: 400;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Libre Baskerville', 'Roboto', serif;
            font-weight: 700;
            line-height: 1.4;
        }

        /* Desktop Typography */
        @media (min-width: 769px) {
            body {
                font-size: 16px;
                line-height: 1.8;
            }
        }

        /* --- Navigation - Mobile First --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 4%;
            background: rgba(255, 255, 255, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 40px;
            width: 40px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
        }

        /* Desktop Navigation */
        @media (min-width: 769px) {
            nav {
                padding: 20px 5%;
            }

            .logo {
                gap: 15px;
            }

            .logo img {
                height: 60px;
                width: 60px;
            }

            .logo-text {
                font-size: 1.8rem;
            }
        }

        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            margin: 8px 0;
            padding: 10px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
            text-align: center;
        }

        /* Desktop Navigation Links */
        @media (min-width: 769px) {
            .nav-links {
                display: flex;
                flex-direction: row;
                position: static;
                width: auto;
                background: transparent;
                padding: 0;
                box-shadow: none;
            }

            .nav-links a {
                margin: 0 0 0 20px;
                padding: 5px 0;
                border-bottom: none;
                text-align: left;
            }
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--primary);
            color: white !important;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        @media (min-width: 769px) {
            .cta-btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        /* --- Hero Section - Mobile First --- */
        .hero {
            min-height: 100vh;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
            position: relative;
            padding: 100px 20px 60px;
            overflow: hidden;
        }

        .hero-content {
            z-index: 2;
            max-width: 100%;
            width: 100%;
        }

        .hero h1 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .hero p {
            font-size: 0.95rem;
            color: var(--text-grey);
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeUp 1s ease forwards 0.3s;
            line-height: 1.6;
            padding: 0 10px;
        }

        /* Desktop Hero */
        @media (min-width: 769px) {
            .hero {
                height: 100vh;
                padding: 0 20px;
            }

            .hero-content {
                max-width: 800px;
            }

            .hero h1 {
                font-size: 3.5rem;
                margin-bottom: 20px;
                letter-spacing: -0.5px;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.2rem;
                margin-bottom: 30px;
                line-height: 1.8;
                padding: 0;
            }
        }

        /* The Animated Apple - Mobile First */
        .floating-apple {
            position: absolute;
            width: 120px;
            right: -20px;
            top: 15%;
            z-index: 1;
            transition: transform 0.1s linear;
            filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
        }

        /* Leaf decoration - Mobile First */
        .leaf-deco {
            position: absolute;
            left: -30px;
            bottom: 5%;
            width: 100px;
            transform: rotate(45deg);
            opacity: 0.4;
        }

        @media (min-width: 769px) {
            .floating-apple {
                width: 300px;
                right: -50px;
                top: 20%;
                filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
            }

            .leaf-deco {
                left: -50px;
                bottom: 10%;
                width: 200px;
                opacity: 0.5;
            }
        }

        /* --- Features Section - Mobile First --- */
        .features {
            padding: 50px 4%;
            background: white;
            text-align: center;
        }

        .features h2 {
            margin-bottom: 30px;
            color: var(--primary);
            font-size: 1.8rem;
            letter-spacing: -0.3px;
        }

        .features>p {
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        @media (min-width: 769px) {
            .features {
                padding: 80px 5%;
            }

            .features h2 {
                margin-bottom: 50px;
                font-size: 2.5rem;
                letter-spacing: -0.5px;
            }

            .features>p {
                font-size: 1.1rem;
                margin-bottom: 50px;
            }
        }

        .feature-item h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            margin: 15px 0 10px;
            color: var(--dark);
        }

        .feature-item p {
            line-height: 1.8;
            color: var(--text-grey);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-item {
            padding: 25px 20px;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .feature-item h3 {
            font-size: 1.2rem;
            margin: 12px 0 8px;
        }

        .feature-item p {
            font-size: 0.85rem;
            line-height: 1.6;
        }

        @media (min-width: 769px) {
            .feature-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }

            .feature-item {
                padding: 30px;
            }

            .feature-item:hover {
                transform: translateY(-10px);
            }

            .feature-item i {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .feature-item h3 {
                font-size: 1.5rem;
                margin: 15px 0 10px;
            }

            .feature-item p {
                font-size: 1rem;
                line-height: 1.8;
            }
        }

        /* --- Menu Section - Mobile First --- */
        .menu-section {
            padding: 50px 4%;
            background-color: #f4f4f4;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            margin: 12px 0;
            color: var(--primary);
            letter-spacing: -0.3px;
        }

        .section-header span {
            color: var(--accent);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.75rem;
            display: inline-block;
            margin-bottom: 8px;
        }

        .section-header p {
            color: var(--text-grey);
            font-size: 0.85rem;
            margin-top: 8px;
        }

        @media (min-width: 769px) {
            .menu-section {
                padding: 80px 5%;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .section-header h2 {
                font-size: 2.5rem;
                margin: 15px 0;
                letter-spacing: -0.5px;
            }

            .section-header span {
                letter-spacing: 2px;
                font-size: 0.875rem;
                margin-bottom: 10px;
            }

            .section-header p {
                font-size: 1rem;
                margin-top: 10px;
            }
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Menu Categories Style - Mobile First */
        .menu-categories {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .menu-category {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .menu-category:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
        }

        .category-title {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            font-family: 'Libre Baskerville', serif;
        }

        @media (min-width: 769px) {
            .menu-categories {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
                margin-top: 40px;
            }

            .menu-category {
                padding: 30px;
                border-radius: 20px;
            }

            .menu-category:hover {
                transform: translateY(-5px);
            }

            .category-title {
                font-size: 1.8rem;
                margin-bottom: 25px;
                padding-bottom: 15px;
                border-bottom: 3px solid var(--accent);
                letter-spacing: 2px;
            }
        }

        .menu-items-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: padding-left 0.3s, color 0.3s;
        }

        .menu-item:hover {
            padding-left: 8px;
            color: var(--accent);
        }

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

        .menu-item span:first-child {
            font-weight: 500;
            color: var(--dark);
            flex: 1;
            font-size: 0.9rem;
        }

        .menu-item .price {
            color: var(--primary);
            font-weight: bold;
            font-size: 0.95rem;
            margin-left: 12px;
            white-space: nowrap;
        }

        .menu-item:hover span:first-child {
            color: var(--accent);
        }

        @media (min-width: 769px) {
            .menu-item {
                padding: 12px 0;
            }

            .menu-item:hover {
                padding-left: 10px;
            }

            .menu-item span:first-child {
                font-size: 1rem;
            }

            .menu-item .price {
                font-size: 1.1rem;
                margin-left: 15px;
            }
        }

        /* Menu Images Section - Mobile First */
        .menu-images-section {
            padding: 50px 4% !important;
        }

        .menu-images-section img {
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 100%;
            max-width: 100%;
        }

        .menu-images-section img:hover {
            transform: scale(1.02);
        }

        @media (min-width: 769px) {
            .menu-images-section {
                padding: 80px 5% !important;
            }

            .menu-images-section img:hover {
                transform: scale(1.05);
            }
        }

        /* Menu Grid Styles */
        .menu-cards-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 769px) {
            .menu-cards-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .menu-card-wrapper {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .menu-card-wrapper:hover {
            transform: translateY(-5px);
        }

        .menu-card-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .menu-card-label {
            margin-top: 15px;
            color: var(--text-grey);
            font-weight: 600;
            font-size: 1rem;
        }

        /* QR Code Section Styles */
        .qr-code-section {
            margin-top: 60px;
            text-align: center;
            padding: 40px;
            background: var(--secondary);
            border-radius: 20px;
        }

        .qr-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        @media (min-width: 769px) {
            .qr-container {
                flex-direction: row;
                text-align: left;
                justify-content: center;
            }
        }

        .qr-image {
            width: 180px;
            height: 180px;
            background: white;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .qr-text h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .qr-text p {
            color: var(--text-grey);
            font-size: 1rem;
            max-width: 300px;
        }

        /* Modal/Lightbox for Menu Images */
        .menu-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            overflow-y: auto;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        .menu-modal.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .menu-modal-content {
            position: relative;
            max-width: 1400px;
            width: 100%;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 70px 15px 30px;
        }

        .menu-modal-image {
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .menu-modal-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            max-width: 100%;
            cursor: default;
        }

        .menu-modal-image p {
            margin-top: 12px;
            color: var(--text-grey);
            font-weight: 500;
            font-size: 0.85rem;
        }

        @media (min-width: 769px) {
            .menu-modal-image {
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }

            .menu-modal-image img {
                border-radius: 10px;
                max-width: 600px;
            }

            .menu-modal-image p {
                margin-top: 15px;
                font-size: 1rem;
            }
        }

        .menu-modal-close {
            position: fixed;
            top: 30px;
            right: 30px;
            background: white;
            color: var(--dark);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 10000;
        }

        .menu-modal-close:hover {
            background: var(--accent);
            color: white;
            transform: rotate(90deg);
        }

        .menu-modal-back {
            position: fixed;
            top: 30px;
            left: 30px;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
            z-index: 10000;
        }

        .menu-modal-back:hover {
            background: var(--dark);
            transform: translateX(-5px);
        }

        @media (min-width: 769px) {
            .menu-modal-content {
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 30px;
                padding: 40px 20px;
            }
        }

        /* Flip Card CSS */
        .card-container {
            background-color: transparent;
            width: 100%;
            height: 400px;
            perspective: 1000px;
            /* Remove this if you don't want the 3D effect */
            cursor: pointer;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
        }

        .card-container:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front,
        .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .card-front {
            background-color: white;
            padding: 20px;
        }

        .card-front img {
            width: 180px;
            height: 180px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .card-front h3 {
            color: var(--dark);
            font-size: 1.4rem;
        }

        .card-front .price {
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 10px;
        }

        .card-front .arabic-name {
            color: #999;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .card-back {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            transform: rotateY(180deg);
            padding: 20px;
        }

        .nutrition-facts {
            text-align: left;
            width: 100%;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .nutrition-row {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 5px 0;
        }

        .order-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
            transition: 0.3s;
        }

        .order-btn:hover {
            background: white;
            color: var(--accent);
        }

        /* --- Winter Special - Mobile First --- */
        .special-offer {
            background: var(--dark);
            color: white;
            padding: 50px 4%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .special-text {
            flex: 1;
            width: 100%;
            padding: 20px 10px;
            order: 2;
        }

        .special-text h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffd700;
        }

        .special-text span {
            font-size: 0.85rem;
        }

        .special-text p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .special-img {
            flex: 1;
            width: 100%;
            text-align: center;
            order: 1;
            margin-bottom: 20px;
        }

        .special-img img {
            width: 100%;
            max-width: 280px;
            border-radius: 15px;
            animation: float 4s ease-in-out infinite;
        }

        @media (min-width: 769px) {
            .special-offer {
                padding: 80px 5%;
                flex-direction: row;
                text-align: left;
            }

            .special-text {
                min-width: 300px;
                padding: 20px;
                order: 1;
                text-align: left;
            }

            .special-text h2 {
                font-size: 3rem;
                margin-bottom: 20px;
            }

            .special-text span {
                font-size: 1rem;
            }

            .special-text p {
                font-size: 1rem;
                line-height: 1.8;
                margin-bottom: 20px;
            }

            .special-img {
                min-width: 300px;
                order: 2;
                margin-bottom: 0;
            }

            .special-img img {
                max-width: 400px;
                border-radius: 20px;
            }
        }

        /* --- Footer - Mobile First --- */
        footer {
            background: #222;
            color: white;
            padding: 40px 4% 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col {
            width: 100%;
            margin-bottom: 15px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .footer-col p {
            font-size: 0.9rem;
        }

        @media (min-width: 769px) {
            footer {
                padding: 50px 5% 20px;
            }

            .footer-content {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 0;
                margin-bottom: 40px;
            }

            .footer-col {
                flex: 1;
                min-width: 250px;
                margin-bottom: 20px;
            }

            .footer-col h3 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .footer-col p {
                font-size: 1rem;
            }
        }

        .social-icons a {
            color: white;
            font-size: 1.3rem;
            margin: 0 8px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--accent);
        }

        .contact-info p {
            margin: 8px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        @media (min-width: 769px) {
            .social-icons a {
                font-size: 1.5rem;
                margin: 0 10px;
            }

            .contact-info p {
                margin: 10px 0;
                gap: 10px;
                font-size: 1rem;
            }
        }

        /* Call Action Button */
        .call-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(45, 106, 79, 0.3);
            margin: 8px;
        }

        .call-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 18px rgba(45, 106, 79, 0.4);
            background: linear-gradient(135deg, var(--dark), var(--primary));
        }

        .call-button i {
            font-size: 1.1rem;
            animation: pulse 2s infinite;
        }

        @media (min-width: 769px) {
            .call-button {
                padding: 15px 30px;
                font-size: 1.1rem;
                margin: 10px;
                gap: 10px;
            }

            .call-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
            }

            .call-button i {
                font-size: 1.3rem;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .call-button-small {
            padding: 12px 25px;
            font-size: 1rem;
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

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

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

        /* Mobile Menu - Always visible on mobile */
        .mobile-menu-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--dark);
            cursor: pointer;
            padding: 5px 10px;
            transition: color 0.3s;
        }

        .mobile-menu-toggle:hover {
            color: var(--accent);
        }

        /* Desktop - Hide mobile menu toggle */
        @media (min-width: 769px) {
            .mobile-menu-toggle {
                display: none;
            }
        }

        /* Smooth Scroll - Craft Template Style */
        html {
            scroll-behavior: smooth;
        }

        /* Ramadan Theme Enhancements */
        :root {
            --ramadan-gold: #FFD700;
        }

        .ramadan-badge {
            background: var(--ramadan-gold);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: inline-block;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
            animation: pulse-gold 2s infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .hanging-lantern {
            position: absolute;
            top: 0;
            right: 10%;
            width: 80px;
            height: auto;
            z-index: 5;
            animation: swing 3s ease-in-out infinite alternate;
            filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
            transform-origin: top center;
        }

        .hanging-lantern:hover {
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
        }

        .crescent-moon {
            position: absolute;
            top: 100px;
            left: 5%;
            font-size: 3rem;
            color: var(--ramadan-gold);
            opacity: 0.8;
            animation: float 4s ease-in-out infinite;
            z-index: 1;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        @keyframes swing {
            from {
                transform: rotate(-5deg);
            }

            to {
                transform: rotate(5deg);
            }
        }

        @media (min-width: 769px) {
            .hanging-lantern {
                width: 140px;
                right: 15%;
                top: 0;
            }

            .crescent-moon {
                top: 150px;
                left: 10%;
                font-size: 5rem;
            }
        }

/* Dynamic site shell */
#site-loading {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    z-index: 2000;
    color: #1b4332;
    font-size: 1rem;
}
#site-loading.hidden {
    display: none;
}

        /* Menu PDF tiles & modal */
        .menu-card-wrapper-pdf {
            cursor: pointer;
        }

        .menu-card-pdf-thumb {
            width: 100%;
            min-height: 200px;
            border-radius: 12px;
            background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 2px dashed var(--accent);
        }

        .menu-card-pdf-thumb i {
            font-size: 4rem;
            color: #b91c1c;
        }

        .menu-card-pdf-badge {
            font-size: 0.75rem;
            font-weight: 700;
            color: #b91c1c;
            margin-top: 4px;
            letter-spacing: 0.08em;
        }

        .menu-modal-pdf-block .menu-modal-pdf {
            width: 100%;
            min-height: 55vh;
            border: none;
            border-radius: 8px;
            background: #f5f5f5;
        }

        .menu-modal-pdf-links {
            margin-top: 10px;
        }

        .menu-modal-pdf-links a {
            color: var(--primary);
            font-weight: 600;
        }

        @media (min-width: 769px) {
            .menu-modal-pdf-block .menu-modal-pdf {
                min-height: 65vh;
                max-width: 900px;
                margin: 0 auto;
            }
        }
