/* Reset & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfbf7; /* Cream white */
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Colors */
:root {
    --primary: #3e2723; /* Dark Chocolate */
    --accent: #d4af37; /* Gold/Bronze */
    --light: #fdfbf7;
    --dark: #1a1a1a;
}

.container { width: 90%; max-width: 1100px; margin: auto; }
.section-padding { padding: 80px 0; }
.highlight { color: var(--accent); }

/* Buttons */
.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--primary);
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}
.btn-main:hover { background: #b8962e; }

/* Navbar */
.navbar {
    background: var(--primary);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.5rem; font-weight: bold; color: #fff; }
.nav-links { display: flex; gap: 20px; }
.nav-links a:hover { color: var(--accent); }
.btn-nav { border: 1px solid var(--accent); padding: 8px 20px; border-radius: 5px; }

/* Hero Section */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(43, 27, 23, 0.7); /* Brown tint */
}
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }

/* Section Styles */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.section-dark { background: var(--primary); color: #fff; padding: 80px 0; }
.section-dark .section-title h2 { color: var(--accent); }

/* About Grid */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.about-card i { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-item { background: rgba(255,255,255,0.05); padding: 30px; border: 1px solid rgba(212, 175, 55, 0.2); }
.service-item h3 { color: var(--accent); margin-bottom: 10px; }

/* Portfolio Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.portfolio-item iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* Contact */
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-info, .contact-form { flex: 1; min-width: 300px; }
.info-list { margin-top: 30px; }
.info-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.info-list i { color: var(--accent); }

form input, form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px;
    background: #fdfbf7; border: none; font-family: inherit;
}
form button { border: none; cursor: pointer; }

/* Footer */
footer { text-align: center; padding: 20px; background: #222; color: #777; font-size: 0.9rem; }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 70px; right: 0; width: 100%;
        background: var(--primary); flex-direction: column;
        text-align: center; display: none; padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .contact-wrapper { flex-direction: column; }
}