/* Base Styles & Variables */
:root {
    --primary-color: #d4af37; /* Gold */
    --primary-dark: #b5952f;
    --bg-dark: #121212;
    --bg-light: #1e1e1e;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --danger: #e74c3c;
    --success: #2ecc71;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--text-light);
}

ul {
    list-style: none;
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px 0 25px 0;
}

.divider.center {
    margin: 15px auto 25px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.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(--bg-dark);
}

.btn:disabled {
    background-color: #555;
    color: #888;
    cursor: not-allowed;
    border: none;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-images-wrapper {
    flex: 1;
    position: relative;
    height: 600px;
}

.about-image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border: 2px solid var(--primary-dark);
    padding: 10px;
    z-index: 1;
}

.about-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 5px solid var(--bg-dark);
    z-index: 2;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.5);
}

.about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 5px solid var(--bg-dark);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.about-text {
    flex: 1;
}

.subtitle {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
}

.lead-text {
    font-size: 18px;
    color: var(--text-light) !important;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 16px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 24px;
}

.feature h5 {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.founder-signature {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.founder-signature .quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 10px;
}

.founder-signature .signature {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    font-size: 20px;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--bg-dark);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

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

.menu-info {
    padding: 20px;
}

.menu-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* VIP Guests Section */
.vip-guests {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vip-card {
    text-align: center;
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-5px);
}

.vip-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    filter: grayscale(80%);
    transition: var(--transition);
}

.vip-card:hover img {
    filter: grayscale(0%);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.vip-info h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.vip-info p {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Table Map */
.table-map {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.box.available { background-color: var(--success); }
.box.booked { background-color: var(--danger); }
.box.selected { background-color: var(--primary-color); }

.tables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-items: center;
}

.table-btn {
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.table-icon {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.table-surface {
    fill: #222;
    stroke: #444;
    stroke-width: 2;
    transition: var(--transition);
}

.chair {
    fill: #333;
    transition: var(--transition);
}

.plate {
    fill: #aaa;
    transition: var(--transition);
}

.centerpiece {
    fill: var(--primary-color);
    transition: var(--transition);
}

.table-text {
    fill: #fff;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
}

/* Available State */
.table-btn.available .table-surface { stroke: var(--success); }
.table-btn.available .chair { fill: var(--success); opacity: 0.3; }
.table-btn.available:hover .chair { opacity: 0.8; }
.table-btn.available:hover { transform: scale(1.05); }

/* Booked State */
.table-btn.booked { cursor: not-allowed; opacity: 0.6; }
.table-btn.booked .table-surface { stroke: var(--danger); fill: #111; }
.table-btn.booked .chair { fill: var(--danger); opacity: 0.4; }
.table-btn.booked .plate { fill: #444; }
.table-btn.booked .centerpiece { fill: #444; }
.table-btn.booked .table-text { fill: #666; }

/* Selected State */
.table-btn.selected { transform: scale(1.1); }
.table-btn.selected .table-surface { stroke: var(--primary-color); fill: #333; }
.table-btn.selected .chair { fill: var(--primary-color); opacity: 1; }
.table-btn.selected .table-text { fill: var(--primary-color); }
.table-btn.selected .plate { fill: #fff; }

/* Booking Form */
.booking-form-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    border: 1px solid #333;
    color: var(--text-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
    border-radius: 4px;
    text-align: center;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px 0;
    border-top: 1px solid #222;
}

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

.footer-col h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
}

.footer-col ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .reservation-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 80px;
    }

    .about-images-wrapper {
        width: 100%;
        height: 500px;
        order: -1;
    }

    .about-image-1 {
        width: 80%;
    }

    .about-image-2 {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .tables-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-images-wrapper {
        height: 400px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: 0;
    }

    .experience-badge .years {
        font-size: 28px;
    }

    .experience-badge .text {
        font-size: 10px;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .tables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
