:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('inicio provisional.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }

.btn-gold {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-gold:hover { transform: scale(1.05); }

/* Secciones */
.section { padding: 80px 10%; text-align: center; }
.bg-light { background: var(--light); }
h2 { font-size: 2.5rem; margin-bottom: 40px; position: relative; }
h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto;
}

/* Formulario */
#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

#contact-form input, #contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
}