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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8f5e8 50%, #7fb069 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.main-title {
    font-family: 'Style Script', cursive;
    font-size: 6.4rem;
    font-weight: 400;
    color: #7fb069;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Style Script', cursive;
    font-size: 1.5rem;
    color: #6b8e5a;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4b942, #7fb069, #f4b942);
    border-radius: 20px 20px 0 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #7fb069;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 400;
}

/* Section Styles */
.menu, .contact {
    padding: 60px 0;
}

.section-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #7fb069;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f4b942, #7fb069);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu Section */
.menu-container {
    text-align: center;
    margin-top: 40px;
}

.menu-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    text-align: center;
}

.contact-email {
    display: inline-block;
    font-size: 1.2rem;
    color: #7fb069;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #7fb069;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-email:hover {
    background: #7fb069;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.3);
}

/* Footer */
.footer {
    color: #666;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero, .section-content {
        padding: 40px 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero, .section-content {
        padding: 30px 20px;
    }
}