/* Ajustes Básiscos Generales */
:root {
    --azul-volsur: #1a2238;
    --dorado-volsur: #c5a059;
    --oscuro: #222222;
    --blanco: #ffffff;
    --gris-claro: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* --- HEADER --- */
.navbar {
    background-color: var(--azul-volsur);
    color: white;
    padding: 1rem 10%; /* Margen lateral mayor para elegancia */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-name { font-size: 1.8rem; color: white; }
.brand-name span { color: var(--dorado-volsur); }
.navbar nav ul { display: flex; list-style: none; gap: 20px; }
.navbar-link { color: white; text-decoration: none; font-size: 0.9rem; }



/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .search-container {
        margin: 0 5%; /* Margen pequeño en móviles */
        margin-top: 0;
    }
    .hero-content { height: 30vh; }
}

/* --- BLOQUE DEL LOGO --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: auto;
    max-height: 50px; /* Controla el tamaño del logo */
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--blanco);
    text-transform: lowercase;
}

.brand-name span {
    color: var(--dorado-volsur);
    font-weight: 700;
}

.by-fraveo {
    font-size: 0.7rem;
    color: var(--dorado-volsur);
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* --- MENÚ DE NAVEGACIÓN (PC) --- */
#menu-check, .menu-icono {
    display: none; /* Oculto en PC */
}

.navbar nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar nav ul li {
    margin-left: 25px;
}

.navbar-link {
    color: var(--dorado-volsur);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navbar-link:hover {
    color: var(--blanco);
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dorado-volsur);
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}
/* TERMINACION DEL NAVBAR*/



/* --- MEDIA QUERIES (RESPONSIVO) --- */

@media (max-width: 850px) {
    /* Navbar móvil con Menú Hamburguesa */
    .menu-icono {
        display: block; /* Muestra las 3 rayitas */
        font-size: 1.8rem;
        color: var(--dorado-volsur);
        cursor: pointer;
    }

    .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--oscuro);
        max-height: 0; /* Oculto inicialmente */
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }

    .navbar nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }

    .navbar nav ul li {
        margin-left: 0;
    }

    /* Mostrar menú al hacer clic */
    #menu-check:checked ~ nav {
        max-height: 300px; /* Animación de apertura */
    }
}




/* PROMOCIONES */
/* Contenedor en columna para que las promos bajen una tras otra */
.promociones-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* La Tarjeta Horizontal */
.promo-card.horizontal {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.promo-card.horizontal:hover {
    transform: scale(1.01);
}

/* Contenedor de Imagen */
.promo-img-container {
    flex: 0 0 350px; /* Ancho fijo para la imagen */
    position: relative;
    overflow: hidden;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que la foto se deforme */
}

/* Badge de Oferta (Oro) */
.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--dorado-volsur);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Contenedor de Información */
.promo-info {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.promo-titulo {
    font-size: 1.6rem;
    color: var(--azul-volsur);
    margin: 0 0 5px 0;
}

.promo-destino {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    font-weight: 500;
}

.promo-descripcion {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Empuja el footer hacia abajo */
}

/* Footer de la tarjeta: Precio y Botón */
.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.promo-precio {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dorado-volsur);
}

.btn-reserva {
    background: var(--azul-volsur);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-reserva:hover {
    background: var(--dorado-volsur);
    color: var(--azul-volsur);
}

/* Responsive para celulares */
@media (max-width: 768px) {
    .promo-card.horizontal {
        flex-direction: column;
    }
    .promo-img-container {
        flex: 0 0 200px;
    }
}

/* --- ESTILOS DEL FOOTER --- */
.footer-volsur {
    background-color: #1a1a1a; /* Un gris muy oscuro o el color de tu marca */
    color: #ffffff;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-col h3, .footer-col h4 {
    color: var(--dorado-volsur);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #777;
}