/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Imagen ocupa todo el viewport */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* El texto se superpone en posición absoluta sobre la imagen */
.hero-text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================
   BANDA BEIGE — posicionada al 42% del alto
   ============================================ */
.hero-band {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    background-color: rgba(196, 163, 126, 0.70);
    padding: 14px 60px 14px 0;
    text-align: right;
    line-height: 1;
}

.hero-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1rem, 1.8vw, 1.7rem);
    font-weight: 400;
    color: #fff;
    font-style: italic;
    letter-spacing: 2px;
}

/* ============================================
   TÍTULO — justo debajo de la banda (top ~53%)
   ============================================ */
.hero-title {
    position: absolute;
    top: 53%;
    right: 55px;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    color: #8b5e3c;
    line-height: 1.1;
    text-align: right;
    margin: 0;
}

/* ============================================
   CTA — botón reserva debajo del título
   ============================================ */
.hero-cta {
    position: absolute;
    top: 68%;
    right: 55px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF9900;
    color: #111;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    pointer-events: auto;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-cta i {
    font-size: 0.9em;
}

.hero-cta:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #111;
    text-decoration: none;
}

/* ============================================
   ACCESIBILIDAD: visualmente oculto para SEO
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-band {
        top: 38%;
        padding: 10px 24px 10px 0;
    }

    .hero-welcome {
        font-size: clamp(0.85rem, 3vw, 1.2rem);
    }

    .hero-title {
        top: 48%;
        right: 24px;
        font-size: clamp(1.8rem, 7vw, 3.2rem);
    }

    .hero-cta {
        top: 66%;
        right: 24px;
        padding: 11px 20px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-band {
        top: 32%;
        padding: 8px 16px 8px 0;
    }

    .hero-title {
        top: 42%;
        right: 16px;
        font-size: clamp(1.4rem, 8vw, 2.2rem);
    }

    .hero-cta {
        top: 58%;
        right: 16px;
        padding: 10px 16px;
        gap: 8px;
        white-space: nowrap;
    }
}

/* Landscape en móviles — viewport muy corto, reposicionar */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: 100svh;
        min-height: 320px;
    }

    .hero-band {
        top: 30%;
        padding: 8px 20px 8px 0;
    }

    .hero-welcome {
        font-size: 0.85rem;
    }

    .hero-title {
        top: 42%;
        right: 20px;
        font-size: clamp(1.2rem, 5vw, 2rem);
    }

    .hero-cta {
        top: 60%;
        right: 20px;
        font-size: 0.78rem;
        padding: 8px 14px;
        white-space: nowrap;
    }
}
