:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --dark-bg: #1a1a1a;
            --light-gold: #F4E4BC;
            --text-white: #ffffff;
            --text-gray: #cccccc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            overflow-x: hidden;
        }

       
        .hero-carousel {
            height: 100vh;
            position: relative;
        }

        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 175, 55, 0.3));
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-white);
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

       a{
        color: #D4AF37 !important;
        text-decoration: none;
       }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
            border: none;
            color: var(--dark-bg) !important;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            color: var(--dark-bg);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        }

        .about-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(212, 175, 55, 0.1));
        }

        .menu-card {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(212, 175, 55, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
            border-color: var(--primary-gold);
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-name {
            font-weight: 600;
            color: var(--text-white);
        }

        .menu-item-price {
            color: var(--primary-gold);
            font-weight: 700;
        }

        .review-card {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(212, 175, 55, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
        }

        .booking-form {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(212, 175, 55, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--text-white);
            border-radius: 10px;
            padding: 0.75rem 1rem;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
            color: var(--text-white);
        }

        .form-control::placeholder {
            color: var(--text-gray);
        }

      

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .section-padding {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
        display: block;
        width: 100%;
        text-align: center; /* or left if you prefer */
        padding: 0 15px; /* add breathing space */
    }

    .hero-subtitle {
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .btn-gold {
        display: block;
        width: 60%;  /* full width button */
        padding: 15px;
        font-size: 1rem;
        border-radius: 8px; /* less round for better full-width look */
        max-width: 90%; /* keeps small margin on sides */
        margin: 0 auto; /* centers button */
    }

    .carousel-caption {
        width: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        padding: 0 10px;
    }

    .carousel-caption {top:60%}

button.carousel-control-prev,
button.carousel-control-next{
    top:90%;
    background:var(--primary-gold);

    
}
button.carousel-control-prev{
border-radius:0% 50% 50% 0%;}

button.carousel-control-next{
border-radius:50% 0% 0% 50%;}

            a.menubt,
.booking-form .btn,
#contact .btn{
   width:100% !important;
   margin-bottom:10px !important;
}
        }

