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

:root {
    --primary: #1a2540;
    --accent: #c9a96e;
    --light: #f8f6f3;
    --text: #333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

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

/* Hero */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(26, 37, 64, 0.5), rgba(26, 37, 64, 0.5)),
                url('hero.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--light);
}

.contact-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text);
}

.map-wrapper {
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}
