/* Color Palette Variables */
:root {
    --cream: #f0ead2;
    --sage: #dde5b6;
    --mint: #adc178;
    --brown: #a98467;
    --dark-brown: #6c584c;
    --white: #ffffff;
    --shadow: rgba(108, 88, 76, 0.1);
    --shadow-dark: rgba(108, 88, 76, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--cream);
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: var(--cream);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sage);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    color: var(--dark-brown);
    border-color: var(--mint);
    background: rgba(173, 193, 120, 0.1);
}

.nav-menu a::after {
    display: none;
}

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

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 88, 76, 0.4), rgba(169, 132, 103, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 2rem;
    background: rgba(240, 234, 210, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--sage);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--mint);
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.cta-button:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}
/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h2 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--brown);
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--mint);
}

.feature h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--brown);
    font-size: 0.95rem;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.section-title {
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.menu-category.right-image {
    grid-template-areas: "content image";
}

.menu-category.right-image .menu-content {
    grid-area: content;
}

.menu-category.right-image .menu-image {
    grid-area: image;
}

.category-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.menu-content {
    padding: 3rem;
}

.menu-content h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.menu-content p {
    color: var(--brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offerings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.offering {
    background: var(--cream);
    color: var(--dark-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--sage);
    transition: all 0.3s ease;
}

.offering:hover {
    background: var(--mint);
    color: var(--white);
    transform: translateY(-2px);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--cream);
}

.section-subtitle {
    text-align: center;
    color: var(--brown);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.event-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

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

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--mint);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 15px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow);
}

.event-date .day {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-date .date {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.event-time {
    color: var(--brown);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-content p:not(.event-time) {
    color: var(--brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
}

.price {
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 1rem;
}

.spots {
    color: var(--mint);
    font-weight: 500;
    font-size: 0.9rem;
}

.reserve-btn {
    width: 100%;
    background: var(--mint);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.events-footer {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.events-footer p {
    color: var(--brown);
    margin-bottom: 1rem;
    font-style: italic;
}

.events-contact {
    color: var(--mint);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.events-contact:hover {
    color: var(--brown);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--brown);
    line-height: 1.6;
}

.contact-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
}

.contact-form h3 {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--sage);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-brown);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--mint);
}

.submit-btn {
    background: var(--mint);
    color: var(--dark-brown);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}
/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.social-links a {
    color: var(--sage);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--sage);
}

.social-links a:hover {
    background: var(--sage);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--sage);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .menu-category.right-image {
        direction: ltr;
    }
    
    .menu-category .menu-image {
        order: -1;
    }
    
    .category-img {
        height: 250px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .menu-content,
    .contact-form {
        padding: 1.5rem;
    }
}

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

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

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

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

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

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.menu-category,
.gallery-item,
.feature {
    transition: all 0.3s ease;
}

.menu-category:hover,
.feature:hover {
    box-shadow: 0 15px 40px var(--shadow-dark);
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--mint);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        background: none;
        color: var(--dark-brown);
    }
}