@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        .hero-bg {
            background-color: #0f172a;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .menu-card:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
        }

        .active-tab {
            background-color: #fef3c7 !important;
            color: #b45309 !important;
            border-color: #f59e0b !important;
        }
        .slideshow-container {
            width: 100%;
            height: auto;
            overflow: hidden;
            margin: auto;
        }
        .slide-wrapper {
            width: 300%;
            display: flex;
            animation: slide 9s infinite;
        }
        img {
            width: 100%;
        }
        @keyframes slide {
            0% { margin-left: 0; }
            33% { margin-left: -100%; }
            66% { margin-left: -200%; }
            100% { margin-left: 0; }
        }