/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #333; line-height: 1.6; background-color: var(--light); }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Variables are defined in inline style in HTML for dynamic PHP values, but fallback here */
:root {
    --primary: #1F3D2B;
    --secondary: #C9A24D;
    --brown: #6B4F2A;
    --light: #F5F0E6;
    --white: #FFFFFF;
}

/* Utils */
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--secondary); margin: 15px auto 0; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 5px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--brown); }
.btn-outline { border: 2px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--white); }

/* Header */
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; height: 80px; display: flex; align-items: center; }
.header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo a { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: bold; color: var(--primary); }
.logo img { max-height: 60px; }

.nav-list { display: flex; gap: 30px; }
.nav-list a { font-weight: bold; color: var(--primary); font-size: 0.9rem; text-transform: uppercase; }
.nav-list a:hover { color: var(--secondary); }

.mobile-menu-icon { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* Hero */
.hero { height: 100vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; text-align: center; color: var(--white); margin-top: 0; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 20px; }
.hero-content h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 10px; }
.about-text h3 { color: var(--secondary); margin-bottom: 20px; font-weight: 400; }
.about-image img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Services */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 20px; text-align: center; border-radius: 8px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-10px); }
.service-card .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.2rem; }

/* Gallery */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { overflow: hidden; border-radius: 8px; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* Testimonials */
.testimonials { background: var(--primary); color: var(--white); text-align: center; }
.testimonials .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 8px; }
.stars { color: var(--secondary); margin-bottom: 15px; }
.author { margin-top: 20px; }
.author strong { display: block; color: var(--secondary); }
.author span { font-size: 0.9rem; color: #ccc; }

/* Contact */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: var(--secondary); width: 25px; }
.social-links { margin-top: 30px; display: flex; gap: 20px; }
.social-links a { width: 40px; height: 40px; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.social-links a:hover { background: var(--secondary); transform: translateY(-3px); }
.map iframe { width: 100%; height: 350px; border-radius: 8px; }

/* Footer */
.footer { background: #111; color: #888; text-align: center; padding: 20px 0; font-size: 0.9rem; }

/* Floating Buttons */
.floating-buttons { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: 0.3s; }
.float-btn.whatsapp { background: #25D366; }
.float-btn:hover { transform: scale(1.1); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; height: 100%; background: var(--primary); z-index: 1001; transition: 0.3s; padding: 50px; }
.mobile-menu.active { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a { color: var(--white); font-size: 1.2rem; font-weight: bold; }
.close-menu { position: absolute; top: 20px; right: 20px; color: var(--white); font-size: 2rem; cursor: pointer; }

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .mobile-menu-icon { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}
