/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* CSS Custom Properties - Luxury Hotel Theme */
:root {
    --luxury-gold: #d4af37;
    --navy-deep: #1e293b;
    --gray-elegant: #f8fafc;
    --white: #ffffff;
    --black: #000000;
    --dark-blue: #0f172a;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Typography */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-hover);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}


.logo img {
  width: 50px; /* adjust the width */
  height: 30px; /* adjust the height */
  object-fit: contain; /* maintain aspect ratio */
}




.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--navy-deep);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--luxury-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--navy-deep);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    animation: fadeUp 1s ease-out 0.3s both;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--luxury-gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: #c19b26;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--navy-deep);
    color: white;
}

.btn-secondary:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
}

.btn-outline:hover {
    background: var(--navy-deep);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.8)),
                url('what') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--luxury-gold);
    margin: 0 auto 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Sections */
.welcome-section,
.about-content,
.rooms-section,
.dining-venues,
.gallery-section,
.booking-section,
.contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--luxury-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.main-image {
    height: 250px;
    object-fit: cover;
}

.secondary-image {
    height: 200px;
    object-fit: cover;
}

/* Heritage Section */
.heritage-section {
    background: var(--gray-elegant);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.heritage-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.heritage-year {
    font-size: 2rem;
    font-weight: bold;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.heritage-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 1.5rem;
}

.room-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.room-description {
    color: #666;
    margin-bottom: 1rem;
}

.amenities-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.amenity-icon {
    margin-right: 0.5rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--luxury-gold);
}

/* Room Features */
.room-features {
    background: var(--gray-elegant);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

/* Gallery */
.room-gallery-preview {
    padding: 80px 0;
    background: var(--gray-elegant);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

/* Restaurant Styles */
.restaurant-hero {
    background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.8)),
                url('what') center/cover;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.venue-content {
    padding: 2rem;
}

.venue-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.venue-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.venue-details {
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Menu Highlights */
.menu-highlights {
    background: var(--gray-elegant);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-content {
    padding: 1.5rem;
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.menu-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--luxury-gold);
}

/* Chef Section */
.chef-section {
    padding: 80px 0;
}

.chef-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chef-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.chef-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.chef-content h3 {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.chef-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.chef-awards {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.award {
    background: var(--gray-elegant);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--navy-deep);
}

/* Wine Collection */
.wine-collection {
    background: var(--gray-elegant);
    padding: 80px 0;
}

.wine-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.wine-stat {
    text-align: center;
}

.wine-stat .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--luxury-gold);
    display: block;
}

.wine-stat .stat-label {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.wine-regions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-deep);
    text-align: center;
    margin-bottom: 2rem;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.region-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.region-card h4 {
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.region-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Gallery Page */
.gallery-filters {
    padding: 2rem 0;
    background: var(--gray-elegant);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: none;
    border-radius: 25px;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--luxury-gold);
    color: white;
}

.gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item .gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Booking Styles */
.booking-hero {
    background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.8)),
                url('WhatsApp Image 2025-08-19 at 13.28.29_962def95.jpg') center/cover;
}

.booking-section {
    background: var(--gray-elegant);
}

.booking-container {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form-container {
    padding: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-submit {
    text-align: center;
}

.booking-info {
    background: var(--navy-deep);
    color: white;
    padding: 3rem 2rem;
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.info-items {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--luxury-gold);
}

.info-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-help {
    border-top: 1px solid #475569;
    padding-top: 1.5rem;
}

.contact-help h4 {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-phone,
.contact-email {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon-container {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--navy-deep);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    background: #f1f5f9;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1.5rem;
}

.services-section {
    background: var(--gray-elegant);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
}

.modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.booking-details {
    background: var(--gray-elegant);
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
    margin-top: 1rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cbd5e1;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--luxury-gold);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--luxury-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
}

.newsletter {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--luxury-gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #c19b26;
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    transform: scale(0.8);
    transition: var(--transition);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.popup-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c19b26;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .page-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .about-grid,
    .chef-grid,
    .contact-grid,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venues-grid {
        grid-template-columns: 1fr;
    }

    .wine-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 8px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .rooms-grid,
    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-container,
    .booking-info {
        padding: 2rem 1.5rem;
    }

    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .popup-content {
        padding: 2rem;
        margin: 0 15px;
    }

    .modal-content {
        width: 95%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .popup-overlay,
    .modal,
    .lightbox {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .page-hero {
        margin-top: 0;
        height: auto;
        padding: 2rem 0;
        background: var(--navy-deep) !important;
        -webkit-print-color-adjust: exact;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --luxury-gold: #ffd700;
        --navy-deep: #000000;
        --shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
/* ====== Gallery Grid Layout ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-image,
.gallery-item video {
  width: 100%;
  height: 250px; /* fixed height for all */
  object-fit: cover; /* keeps proportions while filling */
  border-radius: 15px;
}

/* Overlay on hover */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ====== Lightbox Styles ====== */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img,
.lightbox video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 20px;
  user-select: none;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

#credit-link {
  font-weight: bold;
}
