:root {
    --verde-profundo: #1a2e22;  /* Verde muy oscuro casi negro */
    --verde-jade: #437948;      /* Verde vivo para detalles */
    --crema: #f7f9f7;           /* Fondo suave */
    --blanco: #ffffff;
    --fuente-titulo: 'Cormorant Garamond', serif;
    --fuente-cuerpo: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--crema);
    color: var(--verde-profundo);
    font-family: var(--fuente-cuerpo);
}

/* HEADER */
.main-header {
    background: var(--blanco);
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--fuente-titulo);
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde-profundo);
    display: flex;
    align-items: center;
}

/* El punto de jade (círculo) */
.jade-dot {
    height: 12px;
    width: 12px;
    background-color: var(--verde-jade);
    border-radius: 50%;
    margin-left: 5px;
    margin-top: 5px;
    box-shadow: 0 0 0 3px rgba(67, 121, 72, 0.2);
}

.btn-reservar {
    background-color: var(--verde-profundo);
    color: var(--blanco);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-reservar:hover { background-color: var(--verde-jade); }

/* CARRUSEL */
.hero-carousel {
    position: relative;
    height: 450px;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.carousel-container { height: 100%; width: 100%; position: relative; }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); /* Oscurece la foto para leer el texto */
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.overlay h2 {
    color: var(--blanco);
    font-family: var(--fuente-titulo);
    font-size: 3.5rem;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.dots-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background: var(--blanco); transform: scale(1.3); }

/* CONTENIDO */
.content { padding: 60px 20px; text-align: center; }

.intro h3 {
    font-family: var(--fuente-titulo);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--verde-jade);
}

.intro p { max-width: 700px; margin: 0 auto 60px; line-height: 1.8; font-size: 1.1rem; }

/* FORMULARIO */
.contact-section { display: flex; justify-content: center; }

.form-box {
    background: var(--blanco);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--verde-jade);
}

.form-box h3 { font-family: var(--fuente-titulo); margin-bottom: 20px; font-size: 1.8rem; }

.input-group { margin-bottom: 15px; text-align: left; }
label { display: block; font-size: 0.8rem; margin-bottom: 5px; font-weight: bold; }

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--fuente-cuerpo);
}

button {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background-color: var(--verde-profundo);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover { background-color: var(--verde-jade); }

footer {
    text-align: center;
    padding: 40px;
    background: var(--verde-profundo);
    color: var(--blanco);
    font-size: 0.85rem;
}
