:root {
    --primary: #FF4500; /* Orange from logo */
    --secondary: #4169E1; /* Blue from logo */
    --accent: #FFD700; /* Gold/Yellow */
    --text: #333;
    --light-bg: #f9f9f9;
    --white: #fff;
    --dark: #222;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section { padding: 60px 0; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 5px; font-weight: 700; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: #e03e00; }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 1.1rem; }

/* Header */
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 60px; }

.nav-menu { display: flex; gap: 20px; }
.nav-link { font-weight: 700; color: var(--dark); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.lang-switch { display: flex; gap: 5px; }
.lang-btn { background: none; border: 1px solid #ccc; padding: 5px 10px; cursor: pointer; font-size: 0.8rem; }
.lang-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--dark); }

/* Hero */
.hero { position: relative; height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.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 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }
.about-text p { margin-bottom: 20px; }
.about-image img { border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Featured */
.featured { background: var(--light-bg); }
.featured h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 40px; color: var(--primary); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.featured-item { background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; }
.featured-item:hover { transform: translateY(-5px); }
.featured-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 15px; }
.featured-item h3 { color: var(--secondary); margin-bottom: 10px; }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonials h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 40px; color: var(--primary); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-item { background: var(--light-bg); padding: 30px; border-radius: 10px; text-align: center; }
.stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-item p { font-style: italic; margin-bottom: 15px; }
.author { font-weight: 700; color: var(--secondary); }

/* Gallery */
.gallery h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 40px; color: var(--primary); }
.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: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.03); }

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

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--primary); }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; }
.hours { margin: 30px 0; background: var(--light-bg); padding: 20px; border-radius: 5px; border-left: 4px solid var(--secondary); }
.hours h3 { margin-bottom: 10px; color: var(--secondary); }
.hours-link { color: var(--primary); text-decoration: underline; }

/* Footer */
.footer { background: #222; 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; }
.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(--primary); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 0.9rem; color: #888; display: flex; flex-direction: column; gap: 10px; }
.highlight-link { color: var(--primary); font-weight: 700; }
.highlight-link:hover { text-decoration: underline; }

/* Lightbox */
.lightbox { display: none; position: fixed; z-index: 2000; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 700px; max-height: 80vh; object-fit: contain; }
.close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; }

/* Back to Top */
#back-to-top { display: none; position: fixed; bottom: 20px; right: 30px; z-index: 99; font-size: 18px; border: none; outline: none; background-color: var(--primary); color: white; cursor: pointer; padding: 15px; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
#back-to-top:hover { background-color: var(--secondary); }

/* Promo Popup */
.promo-popup { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.promo-content { background-color: #fff; padding: 40px; border-radius: 10px; text-align: center; max-width: 500px; position: relative; box-shadow: 0 5px 20px rgba(0,0,0,0.2); }
.close-promo { position: absolute; top: 10px; right: 20px; font-size: 28px; cursor: pointer; color: #aaa; }
.promo-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.8rem; }
.promo-content p { margin-bottom: 25px; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
    .header-container { flex-wrap: wrap; }
    .nav-menu { display: none; flex-direction: column; width: 100%; background: var(--white); position: absolute; top: 100%; left: 0; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .order-btn { display: none; } /* Hide header order btn on mobile, use hero one */
}
