/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf9f6;
    color: #2c2c2c;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVEGACIÓN ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    color: white;
    mix-blend-mode: difference;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-reserva-nav {
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 20px;
    border-radius: 30px;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('assets/imagenes/hero-principal.jpg.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
}

/* ===== DESCRIPCIÓN ===== */
.descripcion {
    padding: 100px 0;
    text-align: center;
}

.descripcion h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.divider {
    width: 60px;
    height: 2px;
    background: #b8a28c;
    margin: 20px auto;
}

.descripcion p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #555;
    font-weight: 300;
}

.caracteristicas {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.caracteristicas span {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

.caracteristicas i {
    color: #b8a28c;
    margin-right: 10px;
}

/* ===== GALERÍA ===== */
.galeria {
    background: white;
    padding: 80px 0;
}

.galeria h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-galeria img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.grid-galeria img:hover {
    transform: scale(1.02);
}

/* ===== MAPA ===== */
.mapa {
    padding: 80px 0;
    background: #f4f0eb;
}

.mapa h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.mapa-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== RESERVA ===== */
.reserva {
    padding: 100px 0;
    background: white;
}

.reserva h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.subtitulo-reserva {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

.form-reserva {
    max-width: 700px;
    margin: 0 auto;
    background: #faf8f6;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    transition: border 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8a28c;
}

.row-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-reservar {
    width: 100%;
    background: #1e1e1e;
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.btn-reservar:hover {
    background: #333;
}

.btn-reservar:active {
    transform: scale(0.98);
}

.btn-reservar i {
    margin-right: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #1e1e1e;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

.logo-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .nav-links a {
        margin-left: 15px;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .row-duo {
        grid-template-columns: 1fr;
    }
    
    .form-reserva {
        padding: 30px 20px;
    }
    
    .descripcion h2,
    .galeria h2,
    .mapa h2,
    .reserva h2 {
        font-size: 2.2rem;
    }
    
    .caracteristicas {
        flex-direction: column;
        gap: 15px;
    }
}