:root {
    --gold: #c5a059;
    --dark: #0f172a;
    --light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--light); color: var(--dark); scroll-behavior: smooth; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%; background: rgba(15, 23, 42, 0.98);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}
.logo { font-family: 'Playfair Display', serif; color: white; font-size: 26px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { color: white; text-decoration: none; margin-left: 30px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links li a:hover { color: var(--gold); }

/* Hero */
.hero {
    height: 100vh; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1500') center/cover;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; text-align: center; color: white; padding: 0 20px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 8vw, 4rem); margin-bottom: 20px; }

.btn { padding: 15px 35px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.4s; border: none; cursor: pointer; }
.btn-primary { background: var(--gold); color: white; }
.btn-outline { border: 1px solid white; color: white; margin-left: 10px; }

/* Sections */
.section { padding: 100px 8%; }
.bg-dark { background: var(--dark); }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 50px; }

/* Services Card */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card { background: white; padding: 40px; border: 1px solid #eee; transition: 0.4s; text-align: center; }
.card:hover { border-color: var(--gold); transform: translateY(-10px); }

/* Filter Buttons */
.filter-container { text-align: center; margin-bottom: 40px; }
.filter-btn { 
    background: transparent; color: white; border: 1px solid var(--gold); 
    padding: 8px 20px; margin: 5px; cursor: pointer; transition: 0.3s; 
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: white; }

/* Gallery */
.gallery { 
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px; transition: 0.5s;
}
.gallery-item { position: relative; overflow: hidden; height: 300px; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; 
    opacity: 0; transition: 0.3s; 
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* Contact */
.contact-box { background: white; padding: 50px; max-width: 700px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
input, textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; }
footer { background: var(--dark); color: white; text-align: center; padding: 30px; }


/* About Us Styling */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.about-text { flex: 1; min-width: 300px; }
.about-image { flex: 1; min-width: 300px; }
.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.stat-item h3 { color: var(--gold); font-size: 2rem; }
.stat-item p { font-size: 0.8rem; text-transform: uppercase; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-container { flex-direction: column-reverse; }
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Mobile menu can be added later */
}