@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --gold: #C5A059;
    --gold-light: #e8d099;
    --bg-color: #080808;
    --surface-color: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.4s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 0;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(8, 8, 8, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    background-attachment: fixed;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeIn 2s ease-out;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    animation: fadeIn 2s ease-out 0.5s backwards;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--gold);
    transition: all var(--transition-speed);
    animation: fadeIn 2s ease-out 1s backwards;
    cursor: pointer;
}

.primary-btn {
    background-color: transparent;
    color: var(--gold);
}

.primary-btn:hover {
    background-color: var(--gold);
    color: var(--bg-color);
}

/* About Section */
.about {
    background-color: var(--surface-color);
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Menu Section */
.menu {
    background-color: var(--bg-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.3);
    padding-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
}

.item-info {
    flex: 1;
    padding-right: 2rem;
}

.item-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
}

.item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
}

/* Gallery Section */
.gallery {
    background-color: var(--surface-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-img-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.gallery-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Reservations Section */
.reservations {
    background: linear-gradient(rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.9)), url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    background-attachment: fixed;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(18, 18, 18, 0.7);
    padding: 3rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-speed);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--gold);
}

/* Fix for date/time picker icon colors on dark backgrounds */
.reservation-form input::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    cursor: pointer;
}

.reservation-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    background-color: var(--gold);
    color: var(--bg-color);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Contact/Location Section */
.contact {
    background-color: var(--surface-color);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}

.contact-info h3, .opening-hours h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-info p, .opening-hours p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.dress-code {
    margin-top: 1.5rem;
    color: var(--gold) !important;
}

/* Footer */
footer {
    background-color: #050505;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(8, 8, 8, 0.98);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    }

    .nav-links.active {
        max-height: 400px;
        padding: 2rem 0;
    }

    .nav-links a {
        padding: 1rem 0;
        display: block;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-item:hover {
        transform: translateY(-5px);
    }

    .item-info {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
}
