        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }
        
        .logo img {
            height: 80px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #dc2626;
        }
        
        /* Mobile Header & Burger Button */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1001;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .mobile-logo img {
            height: 50px;
            width: auto;
        }

        .burger-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .burger-menu-btn span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: #333;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -300px; /* Start off-screen */
            width: 300px;
            height: 100%;
            background: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            padding: 20px;
            z-index: 1003;
        }

        .mobile-menu-overlay.active .mobile-menu-container {
            right: 0;
        }

        .close-menu-btn {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #333;
            margin-bottom: 20px;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            transition: color 0.3s;
        }

        .mobile-nav-links a:hover {
            color: #dc2626;
        }

        .mobile-order-btn {
            background: #dc2626;
            color: white !important;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            margin-top: 10px;
        }

        .mobile-lang-toggle {
            margin-top: auto;
            display: flex;
            gap: 10px;
            justify-content: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .mobile-header {
                display: flex;
            }
            
            /* Hide existing header and mobile-nav-bar */
            header, .mobile-nav-bar {
                display: none !important;
            }

            body {
                padding-top: 70px; /* Match mobile header height */
            }
            
            .nav-links {
                display: none !important;
            }
            
            .header {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content .subtitle {
                font-size: 1.25rem;
            }
        }
        
        .order-btn {
            background: #dc2626;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: bold !important;
            transition: background 0.3s;
        }
        
        .order-btn:hover {
            background: #b91c1c;
            color: white !important;
        }
        
        .lang-toggle {
            display: flex;
            gap: 0.5rem;
        }
        
        .lang-btn {
            padding: 0.5rem 1rem;
            border: 2px solid #fbbf24;
            background: transparent;
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .lang-btn.active {
            background: #fbbf24;
            color: black;
        }
        
        /* Hero Section */
        .hero {
            min-height: 600px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Banner.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 2rem 0;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .hero-content .subtitle {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .hero-content .description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        
        /* Sections */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            color: #1f2937;
        }
        
        .about {
            background: #f9fafb;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .feature h3 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #1f2937;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.5rem;
        }
        
        /* Contact */
        .contact {
            background: #f9fafb;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .contact-item a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: #374151;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            color: #d1d5db;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4b5563;
        }
        
        .privacy-link {
            color: #fbbf24;
            text-decoration: underline;
            cursor: pointer;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            overflow-y: auto;
        }
        
        .modal-header {
            height: 300px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/Banner.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }
        
        .back-btn {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: #dc2626;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.25rem;
        }
        
        .modal-content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Gallery Modal */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
        }
        
        .gallery-modal.active {
            display: flex;
        }
        
        .gallery-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-modal-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 0.5rem;
        }
        
        .gallery-modal-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }
        
        .gallery-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .gallery-modal-prev,
        .gallery-modal-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            user-select: none;
        }
        
        .gallery-modal-prev:hover,
        .gallery-modal-next:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .gallery-modal-prev {
            left: 40px;
        }
        
        .gallery-modal-next {
            right: 40px;
        }
        
        .gallery-modal-caption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 30px;
            border-radius: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .gallery-modal-close {
                top: 10px;
                right: 10px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }
            
            .gallery-modal-prev,
            .gallery-modal-next {
                font-size: 30px;
                width: 50px;
                height: 50px;
                padding: 10px;
            }
            
            .gallery-modal-prev {
                left: 10px;
            }
            
            .gallery-modal-next {
                right: 10px;
            }
            
            .gallery-modal-caption {
                font-size: 1.2rem;
                padding: 8px 20px;
            }
        }
        
        .catering-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .catering-images img {
            width: 100%;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        
        .rooms-description {
            background: #f9fafb;
            padding: 2rem;
            border-radius: 1rem;
            margin: 2rem 0;
            border-left: 4px solid #dc2626;
        }
        
        .rooms-description h3 {
            color: #dc2626;
            margin-bottom: 1rem;
        }
        
        .rooms-list {
            list-style: none;
            padding: 0;
        }
        
        .rooms-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .rooms-list li:before {
            content: "🏛️ ";
            margin-right: 0.5rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
