/* General Styles */
:root {
    --primary-color: #C9A961;
    --primary-dark: #A68944;
    --accent-color: #8B6F47;
    --dark-color: #2C2416;
    --light-bg: #FFF9F0;
    --text-dark: #2C2416;
    --text-light: #6B5D4F;
    --cream: #F5EFE6;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    background-color: rgba(44, 36, 22, 0.85) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
    display: block;
}

@media (min-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    .navbar-brand img {
        height: 70px;
    }
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(201, 169, 97, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(201, 169, 97, 0.3);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../assets/venue.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 0;
    padding: 0 20px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero .lead {
    font-size: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

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

/* Menu Header */
.menu-header {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../assets/aerial-9f13f575.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.menu-header h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Menu Content */
.menu-content {
    background-color: #fff;
}

.menu-category {
    padding: 2rem 0;
}

.category-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #8B6F47;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #8B6F47;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.menu-item-name {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-item-desc,
.menu-item-desc-en {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0;
}

.menu-price {
    color: #8B6F47;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

.menu-item.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid var(--primary-color);
}

/* Reservation Section */
.reservation {
    background-color: var(--cream);
    margin-top: 90px;
}

.reservation h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
}

.reservation img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.reservation form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(44, 36, 22, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-control {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

/* Delivery Section */
.delivery {
    padding: 4rem 0;
}

.delivery h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
}

.delivery-logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.delivery-logo:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
}

.feature-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-color);
    margin: 1rem 0;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
}

.gallery h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #fff;
}

.contact h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h5 {
    color: var(--dark-color);
    margin: 1rem 0;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: var(--dark-color);
}

footer p {
    margin: 0;
    color: #fff;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    /* Mobile navbar spacing */
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .btn {
        width: 100%;
        margin: 0.5rem 0 !important;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .menu-header h1 {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-price {
        font-size: 1.1rem;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .gallery-img {
        height: 200px;
    }
}

/* Language Toggle Animation */
#langToggle {
    transition: all 0.3s ease;
}

#langToggle:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
