
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Tahoma', 'Arabic UI Text', sans-serif;
            background: linear-gradient(135deg, #0a4d3c 0%, #1a5f4d 50%, #0a4d3c 100%);
            min-height: 100vh;
            padding: 20px;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(to bottom, #fdfaf5 0%, #ffffff 100%);
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            border: 3px solid #d4af37;
            position: relative;
        }

        .header {
            background: linear-gradient(135deg, #0a4d3c 0%, #165945 100%);
            color: #fdfaf5;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            border-bottom: 4px solid #d4af37;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
        }

        .header h1 {
            font-size: 2.8em;
            margin-bottom: 10px;
            font-weight: 400;
            letter-spacing: 2px;
            color: #d4af37;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .business-name {
            font-size: 1.8em;
            color: #d4af37;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 15px;
        }

        .header p {
            font-size: 1.2em;
            opacity: 0.95;
            font-style: italic;
            letter-spacing: 1px;
        }

        .crescent {
            font-size: 3.5em;
            margin-bottom: 15px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        .crescent-container {
            width: 120px;
            height: 120px;
            position: relative;
        }

        .header-symbols {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
        }

        .logo-container {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        .crescent-svg {
            width: 100%;
            height: 100%;
            animation: float 3s ease-in-out infinite;
        }

        .star {
            animation: twinkle 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.6;
                transform: scale(0.9);
            }
        }

        .menu-section {
            padding: 45px 35px;
            background: #fdfaf5;
        }

        .menu-section:nth-child(even) {
            background: #ffffff;
        }

        .section-title {
            font-size: 2em;
            color: #0a4d3c;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #d4af37;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #0a4d3c;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px;
            margin-bottom: 18px;
            background: #ffffff;
            border-radius: 2px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .menu-item:hover {
            transform: translateX(5px);
            border-left-color: #d4af37;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
        }

        .item-info h3 {
            font-size: 1.4em;
            color: #0a4d3c;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .item-name-ar {
            font-size: 1.2em;
            color: #d4af37;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .item-name-en {
            font-size: 1.1em;
            color: #0a4d3c;
            font-weight: 500;
        }

        .item-info p {
            color: #5a5a5a;
            font-size: 0.95em;
            line-height: 1.6;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .description-ar {
            margin-bottom: 3px;
            font-size: 0.95em;
        }

        .description-en {
            font-size: 0.9em;
            opacity: 0.8;
        }

        .item-price {
            font-size: 1.6em;
            color: #d4af37;
            font-weight: 600;
            margin-left: 25px;
            font-family: 'Georgia', serif;
        }

        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .whatsapp-button:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-button svg {
            width: 38px;
            height: 38px;
            fill: white;
        }

        @media (max-width: 600px) {
            .header h1 {
                font-size: 2.2em;
            }

            .header {
                padding: 40px 25px;
            }

            .header-symbols {
                gap: 20px;
            }

            .logo-container,
            .crescent-container {
                width: 90px;
                height: 90px;
            }

            .business-name {
                font-size: 1.3em;
            }

            .menu-section {
                padding: 35px 25px;
            }

            .menu-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }

            .item-price {
                margin-left: 0;
                margin-top: 12px;
            }

            .whatsapp-button {
                width: 58px;
                height: 58px;
                bottom: 20px;
                right: 20px;
            }

            .section-title {
                font-size: 1.6em;
            }
        }

        /* Additional decorative elements */
        .ornament {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 20px 0;
        }
  .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 120px; /* adjust */
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
