/* ===== BASE.CSS ===== */
/* Estilos base para Viajes JAER */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--fondo-gris, #f9f9f9);
    color: var(--plomo-oscuro, #333333);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Highlights Section */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.highlight-card {
    background-color: var(--blanco, #ffffff);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--rojo-base, #ff0000);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--rojo-intenso, #e00000);
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: var(--plomo-oscuro, #333333);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.highlight-card p {
    color: var(--plomo-medio, #555555);
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 50px 0 40px;
    color: var(--plomo-oscuro, #333333);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: var(--rojo-base, #ff0000);
}

/* Itinerary */
.itinerary-container {
    background-color: var(--blanco, #ffffff);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 50px;
    border-left: 5px solid var(--rojo-base, #ff0000);
}

.day-title {
    background-color: var(--rojo-intenso, #e00000);
    color: var(--blanco, #ffffff);
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    display: inline-block;
}

.day-content {
    margin-bottom: 40px;
}

.day-content:last-child {
    margin-bottom: 0;
}

.time {
    background-color: var(--rojo-intenso, #e00000);
    color: var(--blanco, #ffffff);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.activity {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.activity:last-child {
    margin-bottom: 0;
}

.activity h3 {
    color: var(--plomo-oscuro, #333333);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}

.activity p {
    color: var(--plomo-medio, #555555);
    flex: 1;
}

/* Hotel Info */
.hotel-info {
    background-color: var(--blanco, #ffffff);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 50px;
    border-top: 4px solid var(--rojo-base, #ff0000);
}

.hotel-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.hotel-header h3 {
    color: var(--plomo-oscuro, #333333);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.hotel-header strong {
    color: var(--rojo-intenso, #e00000);
}

.hotel-rating {
    background-color: var(--rojo-intenso, #e00000);
    color: var(--blanco, #ffffff);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature {
    background-color: var(--off-white, #f5f5f5);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--plomo-medio, #555555);
}

/* Video Section */
.video-section {
    background-color: var(--plomo-oscuro, #333333);
    padding: 60px 0;
    margin: 50px 0;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.video-title {
    color: var(--blanco, #ffffff);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.video-title span {
    color: var(--rojo-claro, #ff4040);
}

/* Responsive */
@media (max-width: 992px) {
    .video-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .activity {
        flex-direction: column;
    }
    
    .time {
        margin-right: 0;
        margin-bottom: 15px;
        width: fit-content;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-card h3 {
        font-size: 1.3rem;
    }
}