/* app/static/css/components.css */

/* --- HERO BANNER --- */
.hero-banner {
    position: relative;
    height: 75vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

/* Carrusel de imágenes de fondo */
.carousel-image-bg {
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-color: var(--color-petroleo); /* Color de respaldo si no hay foto */
}

/* Velo oscuro para garantizar legibilidad del texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 58, 69, 0.65); /* Azul Noche con 65% de opacidad */
    z-index: 10;
}

/* Contenido del texto */
.hero-content {
    color: var(--color-arena);
    max-width: 800px;
    z-index: 20; /* Por encima del velo */
    position: relative;
}

.hero-title {
    color: var(--color-menta);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive: se achica en celulares */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Botones de llamada a la acción */
.btn-hero {
    background-color: var(--color-coral);
    color: var(--color-blanco-roto);
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 50px; /* Bordes redondeados amigables */
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: var(--color-menta);
    color: var(--color-noche);
    transform: translateY(-3px); /* Pequeño salto al pasar el mouse */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}