/* ===== BASE STYLES ===== */
:root {
    --primary-color: #0a2540;
    --secondary-color: #ff9a62;
    --accent-color: #f7f7f7;
    --text-color: #333;
    --light-text: #7a7a7a;
    --white: #fff;
    --black: #000;
    --gray-light: #f8f8f8;
    --gray-medium: #e0e0e0;
    --gray-dark: #555;
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 154, 98, 0.3);
}

.btn-primary:hover {
    background-color: #ff8a4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 154, 98, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* ===== HEADER ===== */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(10, 37, 64, 0.9);
    box-shadow: var(--shadow);
}

.main-header.scrolled .main-nav ul li a {
    color: var(--white);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.book-now a {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 30px;
    transition: var(--transition);
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 154, 98, 0.3);
}

.book-now a:hover {
    background-color: #ff8a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 98, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

.main-header.scrolled .mobile-menu-btn {
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(10, 37, 64, 0.3) 100%);
}

.hero-content {
    max-width: 800px;
    margin-left: 10%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 5px auto 0;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
    100% { top: 5px; opacity: 1; }
}

/* ===== BOOKING WIDGET ===== */
.booking-widget-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.booking-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.booking-widget button {
    grid-column: 1 / -1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--accent-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== ROOMS SECTION ===== */
.rooms-section {
    background-color: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-price span {
    font-size: 0.8rem;
    color: var(--light-text);
    font-weight: 400;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-details p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
}

.room-features i {
    color: var(--secondary-color);
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
    background-color: var(--accent-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 154, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.amenity-card p {
    color: var(--light-text);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 15px;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: rgba(255, 154, 98, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--light-text);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-medium);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.gallery-zoom:hover {
    transform: scale(1.2);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.address {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.address i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.location-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-text p {
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-logo img {
    margin-bottom: 20px;
    align-items: center;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.payment-methods p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom i {
    color: var(--secondary-color);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.whatsapp-cta,
.phone-cta {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-cta {
    background-color: #25D366;
}

.phone-cta {
    background-color: var(--secondary-color);
}

.whatsapp-cta:hover,
.phone-cta:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .location-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
    }
    
    .main-nav ul li a {
        color: var(--text-color);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        margin-left: 5%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 700px;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}
/* ===== DINING PAGE STYLES ===== */

/* Restaurant Cards */
.restaurants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px 0;
}

.restaurant-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
    height: 300px;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.restaurant-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.restaurant-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.restaurant-meta i {
    color: var(--secondary-color);
}

.restaurant-details p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.restaurant-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-light);
    padding: 5px 12px;
    border-radius: 20px;
}

.restaurant-features i {
    color: var(--secondary-color);
}

/* Chef Section */
.chef-section {
    background: var(--accent-color);
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chef-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.chef-image:hover img {
    transform: scale(1.05);
}

.chef-details {
    padding: 30px 0;
}

.chef-details .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
}

.chef-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.chef-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.chef-signature {
    margin-top: 30px;
}

.chef-signature img {
    height: 60px;
}

/* Menu Section */
.menu-section {
    background: var(--white);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 25px;
    border: none;
    background: var(--gray-light);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.menu-tab.active {
    background: var(--secondary-color);
    color: var(--white);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--gray-medium);
}

.item-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-name h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.item-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.menu-item p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Private Dining Section */
.private-dining-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.private-dining-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.private-dining-image {
    height: 300px;
}

.private-dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.private-dining-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.private-dining-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.private-dining-details p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.private-dining-features {
    margin-bottom: 25px;
}

.private-dining-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.private-dining-features i {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .restaurant-card,
    .private-dining-card {
        grid-template-columns: 1fr;
    }
    
    .restaurant-image,
    .private-dining-image {
        height: 250px;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .chef-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-tabs {
        justify-content: flex-start;
    }
    
    .menu-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .restaurant-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .restaurant-features {
        gap: 10px;
    }
    
    .restaurant-features span {
        font-size: 0.8rem;
    }
}
/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Keep the existing overlay styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(10, 37, 64, 0.3) 100%);
}
/* Stacked logo version */
