/* Reset & Base */
:root {
    --primary: #009e4f; /* Green from logo/site */
    --primary-dark: #007a3d;
    --secondary: #d4af37; /* Gold accent */
    --text: #333;
    --bg: #fff;
    --light-bg: #f9f9f9;
    --header-height: 80px;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); color: #2c3e50; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem; position: relative; }
h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: 10px auto 0; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; padding: 10px 25px; border-radius: 5px; font-weight: 700; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 15px 35px; font-size: 1.1rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; height: var(--header-height); display: flex; align-items: center; }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { height: 60px; }
.nav-menu { display: flex; gap: 20px; }
.nav-link { font-weight: 700; font-size: 1rem; position: relative; padding-bottom: 5px; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.lang-switch { display: flex; border: 1px solid #ddd; border-radius: 5px; overflow: hidden; }
.lang-btn { background: #fff; border: none; padding: 5px 10px; cursor: pointer; font-weight: bold; font-size: 0.9rem; }
.lang-btn.active { background: var(--primary); color: #fff; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background: #333; transition: 0.3s; }

/* Hero */
.hero { position: relative; height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: var(--header-height); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: -1; }
.hero-content h1 { color: #fff; font-size: 3rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-sub { font-size: 1.2rem; margin-bottom: 2rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-image img { border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Featured */
.featured { background: var(--light-bg); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.featured-item { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,0.1); text-align: center; padding-bottom: 20px; transition: transform 0.3s; }
.featured-item:hover { transform: translateY(-5px); }
.featured-item img { width: 100%; height: 200px; object-fit: cover; }
.featured-item h3 { margin: 15px 0 5px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; cursor: pointer; transition: opacity 0.3s; }
.gallery-grid img:hover { opacity: 0.8; }

/* FAQ */
.faq { background: var(--light-bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 10px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { width: 100%; padding: 15px 20px; text-align: left; background: none; border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.faq-answer p { padding-bottom: 15px; color: #666; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .icon { transform: rotate(45deg); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info p { margin-bottom: 10px; }
.hours { margin: 20px 0; padding: 15px; background: var(--light-bg); border-radius: 5px; }

/* Footer */
.footer { background: #2c3e50; color: #fff; padding: 60px 0 20px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-brand { max-width: 400px; }
.footer-logo-img { height: 80px; margin-bottom: 20px; } /* Removed filter to show original logo colors */
.footer-desc { color: #ccc; font-size: 0.95rem; line-height: 1.6; }
.footer-contact h3, .footer-social h3 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-contact p { color: #ccc; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--secondary); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; transition: 0.3s; }
.social-icons a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; font-size: 0.9rem; color: #aaa; }
.highlight-link { color: var(--secondary); text-decoration: underline; }
.highlight-link:hover { color: #fff; }

/* Lightbox */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; justify-content: center; align-items: center; }
.lightbox-content { max-width: 90%; max-height: 90%; }
.close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }

/* Back to Top */
#back-to-top { display: none; position: fixed; bottom: 20px; right: 20px; background: var(--primary); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 20px; z-index: 900; }

/* Promo Popup */
.promo-popup { display: none; position: fixed; bottom: 20px; left: 20px; width: 300px; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.2); padding: 20px; border-radius: 10px; z-index: 1500; animation: slideIn 0.5s ease; }
@keyframes slideIn { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-promo { position: absolute; top: 10px; right: 10px; cursor: pointer; font-size: 20px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: absolute; top: var(--header-height); left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); display: none; }
    .nav-menu.active { display: flex; }
    .header-actions { gap: 10px; }
    .order-btn { display: none; } /* Hide order btn on mobile header to save space, maybe show in menu? */
    .nav-menu .order-btn-mobile { display: block; margin-top: 10px; }
    .hero-content h1 { font-size: 2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .header-container { padding: 0 15px; }
    
    /* Mobile Header Layout: Logo - Lang - Burger */
    .header-container { justify-content: space-between; }
    .header-actions { order: 2; }
    .logo-link { order: 1; }
    /* Ensure Lang is visible */
    .lang-switch { margin-right: 10px; }
}
