* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --tertiary-gold: #F4E4BC;
    --rose-gold: #E8B4A6;
    --dark-charcoal: #1a1a1a;
    --medium-gray: #2c2c2c;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --cream: #faf9f7;
    --ivory: #fefef8;
    --accent-navy: #0f1419;
    --text-light: #666666;
    --text-medium: #4a4a4a;
    --shadow-primary: rgba(212, 175, 55, 0.15);
    --shadow-secondary: rgba(0, 0, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #B8860B 100%);
    --gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-luxury: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    overflow-x: hidden;
    background: var(--ivory);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 180, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Luxury scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70px;
}

.nav-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-logo:hover h2::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-luxury);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 180, 166, 0.1));
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-luxury);
}

.nav-menu a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-luxury);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.book-btn {
    background: var(--gradient-gold);
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    color: var(--white) !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s ease;
}

.book-btn:hover::before {
    left: 0%;
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 2px 10px rgba(0,0,0,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(26,26,26,0.3)), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(232, 180, 166, 0.06) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(44, 44, 44, 0.6) 30%,
        rgba(212, 175, 55, 0.15) 70%,
        rgba(26, 26, 26, 0.7) 100%
    );
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #F4E4BC 20%,
        #D4AF37 40%,
        #ffffff 60%,
        #F4E4BC 80%,
        #D4AF37 100%
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        fadeInUp 1.5s ease forwards 0.5s,
        luxuryShimmer 4s ease-in-out infinite;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease forwards 1s;
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '◆';
    color: var(--primary-gold);
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.hero-subtitle::before {
    left: -3rem;
    animation: luxuryPulse 3s ease-in-out infinite;
}

.hero-subtitle::after {
    right: -3rem;
    animation: luxuryPulse 3s ease-in-out infinite 1.5s;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--white);
    border: 2px solid transparent;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-luxury);
    opacity: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease forwards 1.5s;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 1s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.5),
        0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

/* Luxurious Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-header h2::after {
    content: '◆ ◆ ◆';
    display: block;
    color: var(--primary-gold);
    font-size: 0.8rem;
    margin-top: 1rem;
    letter-spacing: 6px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.section-header:hover h2::after {
    opacity: 0.7;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Restaurant Section */
.restaurant-section {
    padding: 6rem 0;
    background: var(--cream);
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.restaurant-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.restaurant-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.restaurant-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurant-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.restaurant-features .feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.restaurant-features .feature span {
    font-weight: 500;
    color: var(--dark-charcoal);
}

.restaurant-gallery {
    position: relative;
}

.gallery-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-thumbnails img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    loading: eager;
}

.gallery-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Meetings Section */
.meetings-section {
    padding: 6rem 0;
    background: var(--white);
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.meeting-room {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.meeting-room:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-details {
    padding: 2rem;
}

.room-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-specs i {
    color: var(--primary-gold);
}

.room-details p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background: var(--cream);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.events-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.events-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.events-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.events-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-charcoal);
    font-size: 0.95rem;
}

.events-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.events-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.gallery-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: var(--cream);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.location-details > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.nearby-attractions h4 {
    font-size: 1.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.attraction {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.attraction i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    width: 20px;
}

.attraction span {
    font-weight: 400;
    color: var(--dark-charcoal);
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Luxury Map Styling */
#luxury-map {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    filter: sepia(10%) saturate(1.2) contrast(1.1);
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.leaflet-control-zoom a {
    background: var(--gradient-gold) !important;
    color: white !important;
    border: none !important;
    font-weight: bold !important;
    transition: var(--transition-luxury) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--secondary-gold) !important;
    transform: scale(1.1) !important;
}

.luxury-popup .leaflet-popup-content-wrapper {
    background: var(--ivory) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
    border: 1px solid var(--tertiary-gold) !important;
}

.luxury-popup .leaflet-popup-tip {
    background: var(--ivory) !important;
    border: 1px solid var(--tertiary-gold) !important;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray), var(--cream));
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background: var(--white);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 25px 25px 0 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: var(--white);
    font-size: 1rem;
    transition: var(--transition-luxury);
    font-family: 'Montserrat', sans-serif;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(0,0,0,0.05);
    transform: translateY(-2px);
    background: var(--ivory);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-1px);
}

.booking-submit {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--white);
    border: 3px solid transparent;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition-luxury);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.booking-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
}

.booking-submit::after {
    content: '✨';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.booking-submit:hover::before {
    left: 100%;
}

.booking-submit:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.booking-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.5),
        0 10px 30px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #cccccc;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: #999999;
}

/* Luxury Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes luxuryShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes luxuryPulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}


@keyframes elegantSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .restaurant-content,
    .events-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .meetings-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .booking-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
}