/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; scroll-behavior: smooth; }

/* Colors */
:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f4f4f4;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--dark); margin: 0 20px; font-weight: 500; transition: 0.3s; }
.nav-links li a:hover { color: var(--gold); }

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 20px; }
.hero-btns { margin-top: 30px; }

/* Buttons */
.btn-primary { background: var(--gold); color: white; padding: 12px 30px; text-decoration: none; border: none; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.btn-secondary { border: 2px solid white; color: white; padding: 10px 28px; text-decoration: none; margin-left: 10px; border-radius: 4px; transition: 0.3s; }
.btn-primary:hover { background: #b8962d; }
.btn-secondary:hover { background: white; color: var(--dark); }

/* Services */
.services { padding: 80px 8%; background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.line { width: 60px; height: 3px; background: var(--gold); margin: 10px auto; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px; text-align: center; transition: 0.3s; border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--gold); }
.service-card .icon { font-size: 40px; margin-bottom: 20px; }

/* Portfolio Gallery */
.portfolio { padding: 80px 8%; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.gallery-item { 
    height: 300px; background-size: cover; background-position: center; 
    display: flex; align-items: flex-end; padding: 20px; color: white;
    cursor: pointer; position: relative; overflow: hidden;
}
.gallery-item span { font-weight: 600; z-index: 2; }
.gallery-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); transition: 0.3s; }
.gallery-item:hover::after { background: rgba(0,0,0,0.6); }

/* Contact Form */
.contact { padding: 80px 8%; background: var(--dark); color: white; }
.contact-container { max-width: 600px; margin: auto; text-align: center; }
#contact-form { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
#contact-form input, #contact-form select, #contact-form textarea { padding: 12px; border: none; border-radius: 4px; }
#contact-form textarea { height: 100px; }

footer { padding: 20px; text-align: center; background: #111; color: #777; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
}