
        :root {
            --gold: #D4A644;
            --red: #C41E3A;
            --green: #2E7D32;
            --dark: #1A1A1A;
            --light: #FFFFFF;
            --gray: #6C757D;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Header & Navigation */
        .navbar {
            background: var(--light);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold) !important;
            letter-spacing: 1px;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .nav-link:hover {
            color: var(--gold) !important;
        }
        
        .btn-reserve {
            background: var(--gold);
            color: var(--light);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }
        
        .btn-reserve:hover {
            background: var(--red);
            transform: translateY(-2px);
        }
        
        .btn-reserve small {
            display: block;
            font-size: 0.6rem;
            opacity: 0.9;
        }
        
        .lang-selector a {
            color: var(--gray);
            text-decoration: none;
            margin: 0 0.3rem;
            font-size: 0.6rem;
            transition: color 0.3s;
        }
        
        .lang-selector a.active,
        .lang-selector a:hover {
            color: var(--gold);
            font-weight: 600;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23D4A644" opacity="0.1" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: var(--light);
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(212, 166, 68, 0.2) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--light);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        
        .btn-primary-custom {
            background: var(--gold);
            color: var(--light);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0.5rem;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background: var(--red);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }
        
        .btn-outline-custom {
            background: transparent;
            color: var(--light);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            border: 2px solid var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0.5rem;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background: var(--gold);
            color: var(--light);
            transform: translateY(-3px);
        }
        
        /* Section Styling */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gold);
        }
        
        .section-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }
        
        /* About Section */
        .about-section {
            background: var(--light);
        }
        
        .about-text {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        /* Specialties Section */
        .specialties-section {
            background: #F8F9FA;
        }
        
        .dish-card {
            background: var(--light);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid var(--gold);
        }
        
        .dish-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .dish-card h4 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .dish-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .menu-note {
            background: var(--gold);
            color: var(--light);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            margin-top: 2rem;
        }
        
        /* Why Choose Section */
        .why-section {
            background: var(--light);
        }
        
        .why-card {
            text-align: center;
            padding: 2rem 1rem;
            transition: all 0.3s;
        }
        
        .why-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .why-card:hover .why-icon {
            color: var(--red);
            transform: scale(1.1);
        }
        
        .why-card h4 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .why-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Booking Section */
        .booking-section {
            background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
            color: var(--light);
        }
        
        .booking-section .section-title {
            color: var(--light);
        }
        
        .booking-section .section-title::after {
            background: var(--light);
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            margin: 2rem 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--light);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: #F8F9FA;
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-slide {
            min-width: 100%;
            padding: 0 20px;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.3;
            font-family: 'Playfair Display', serif;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold);
            color: var(--light);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }
        
        .slider-nav:hover {
            background: var(--red);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav.prev {
            left: -25px;
        }
        
        .slider-nav.next {
            right: -25px;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #CCC;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--gold);
            width: 30px;
            border-radius: 6px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
        }
        
        .footer h5 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer p, .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--gold);
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(212, 166, 68, 0.2);
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .navbar-brand{
                font-size: 0.8rem;
            }
        }
        /* ============================================================================================== */
         .container-fluid{
            text-align: center;
         }
