
/* ----- ITINERARY PAGE ----- */
.itinerary-page {
    min-height: 100vh;
    padding-top: 100px;
}

.itinerary-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.itinerary-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.itinerary-hero p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.itinerary-note {
    font-size: 0.9rem !important;
    color: var(--grey) !important;
    font-style: italic;
    margin-top: 2rem;
    max-width: 950px;
    text-align: center;
    margin: 2.5rem auto;
}

.itinerary-section {
    padding: 2rem 2rem 5rem;
}

.day-card {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 3rem;
}

.day-card:last-child {
    margin-bottom: 0;
}

.day-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--blanco);
}

.day-number {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.day-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    color: var(--azul);
    letter-spacing: 1px;
}

.day-content {
    padding-left: 0;
}

.time-block {
    margin-bottom: 2rem;
}

.time-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.time-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
}

.time-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-block ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);

    padding-left: 1.2rem;
    position: relative;
    font-weight: 300;
}

.time-block ul li::before {
    content: "●";
    color: var(--azul);
    position: absolute;
    font-size: 0.6rem;
    left: 0;
    top: 0.3rem;
}

.day-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.day-gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--blanco);
    border: 1px solid #e0e0e0;
}

.gallery-placeholder span {
    color: var(--grey);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .itinerary-hero h1 {
        font-size: 2.2rem;
    }
    
    .day-card {
        padding: 2rem 1.5rem;
    }
    
    .day-header h2 {
        font-size: 1.6rem;
    }
    
    .day-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 5rem 2rem;
    background: var(--verde-bg);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--blanco);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}