
:root {
    --parchment: #f2ebd3;
    --charcoal: #1a1a1a;
    --gold: #d4af37;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--parchment);
    color: var(--charcoal);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2 { font-family: 'Playfair Display', serif; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s ease;
}

header.scrolled {
    background: var(--parchment);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin: 0 20px; }
.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--parchment);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content { position: relative; z-index: 10; margin: 0 auto; }

.hero-title { font-size: 5rem; margin-bottom: 20px; }
.hero-subtitle { text-transform: uppercase; letter-spacing: 5px; color: var(--gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--parchment); color: var(--charcoal); }
.btn-outline { border: 1px solid var(--parchment); color: var(--parchment); margin-left: 10px; }
.btn-dark { background: var(--charcoal); color: var(--parchment); width: 100%; }

/* Sections */
section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-image img { width: 100%; height: auto; display: block; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item img { width: 100%; height: 350px; object-fit: cover; }

/* Form */
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    font-family: inherit;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    
    /* Hamburger Menu */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--charcoal);
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--parchment);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-links.active { left: 0; }
    .nav-links li { margin: 15px 0; }
    
    .btn-nav-hide { display: none; }
    
    .hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .btn-outline { margin-left: 0; width: 100%; max-width: 200px; }
    .btn-primary { width: 100%; max-width: 200px; }
}

footer { padding: 40px 0; background: var(--charcoal); color: rgba(242,235,211,0.5); }
