/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1A1A1A;
    color: #E5E4E2;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #E5E4E2;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #AF9500;
    margin: 20px auto 0;
}

/* Utilities */
.gold-text {
    color: #AF9500;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #AF9500;
    color: #AF9500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: #AF9500;
    color: #1A1A1A;
    box-shadow: 0 0 20px rgba(175, 149, 0, 0.4);
}

.vignette {
    position: relative;
}

.vignette::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
    pointer-events: none;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 228, 226, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: #AF9500;
    margin-bottom: 0;
    letter-spacing: 5px;
}

.logo .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #E5E4E2;
    display: block;
    text-align: center;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #AF9500;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #AF9500;
}

nav a:hover::after {
    width: 100%;
}

.btn-reserve {
    border: 1px solid #E5E4E2;
    padding: 8px 20px;
}

.btn-reserve:hover {
    background-color: #AF9500;
    border-color: #AF9500;
    color: #1A1A1A;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1550966871-3ed3c47e2ce2?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    color: #E5E4E2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Spaces Section */
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.space-card {
    background: #222;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.space-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content h3 {
    color: #AF9500;
    font-size: 1.8rem;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Menu Section */
.menu-section {
    background-color: #151515;
}

.menu-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.menu-item {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.menu-frame {
    border: 2px solid #AF9500;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    transition: border-color 0.4s ease;
}

.menu-item:hover .menu-frame {
    border-color: #E5E4E2;
    box-shadow: 0 0 30px rgba(175, 149, 0, 0.2);
}

.menu-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.menu-details h4 {
    font-size: 1.5rem;
    color: #AF9500;
    margin-bottom: 0.5rem;
}

.menu-details p {
    font-style: italic;
    color: #aaa;
}

/* Social Section */
.social-section {
    background-color: #1A1A1A;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    background: #222;
    padding: 3rem;
    border: 1px solid rgba(175, 149, 0, 0.3);
    position: relative;
}

.testimonials-slider::before {
    content: '“';
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    color: rgba(175, 149, 0, 0.1);
    position: absolute;
    top: -50px;
    left: 20px;
}

.quote {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.author {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #AF9500;
}

/* Reservation Section */
.reservation-section {
    background-color: #151515;
}

.split-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.reservation-form-container {
    flex: 1;
    background: #222;
    padding: 3rem;
    border: 1px solid rgba(229, 228, 226, 0.1);
}

.map-container {
    flex: 1;
    min-height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    overflow: hidden;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #AF9500;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #1A1A1A;
    border: 1px solid #333;
    color: #E5E4E2;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #AF9500;
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #AF9500;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.footer-content p {
    color: #666;
    font-size: 0.8rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text,
.reveal-card,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .map-container {
        min-height: 300px;
    }
}
