/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2023/12/iStock-1148909679-min.jpg');
    background-size: cover;
    background-position: center;
    min-height: 546px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Timeline Section */
.timeline-section {
    background: white;
}

.container-left {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    min-height: 100px;
    left: 0;
    text-align: right;
}

.container-right {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    min-height: 100px;
    left: 50%;
}

.container-left:before,
.container-right:before {
    content: '';
    position: absolute;
    top: 110px;
    height: 2px;
    width: 40px;
    background: repeating-linear-gradient(to right, #41a0d1 0 10px, transparent 10px 20px);
}

.container-right:before {
    left: 5px;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.container-left .flags-pill {
    left: 15px;
}

.flags-pill {
    top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    font-size: 27px;
}

img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -.1em !important;
    background: 0 0 !important;
    padding: 0 !important;
}

.event-date {
    display: inline-block;
    background-color: #41a0d1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 7px;
}

.event-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #2c3e50;
}

.event-location {
    color: #666;
    font-style: normal;
    font-size: 19px;
    margin-bottom: 6px;
}

.event-location:before {
    content: '📍 ';
}

.timeline-arrow {
    content: '▼';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    font-size: 24px;
    color: #41a0d1;
}

.timeline {
    position: relative;
    margin: 0;
    padding: 40px 0;
    margin-top: 60px;
    margin-bottom: 60px;
}

.timeline:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, #41a0d1 0 10px, transparent 10px 20px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 350px;
    }

    .header-title-container {
        padding: 20px 25px;
    }

    .header-title-container h1 {
        font-size: 2rem;
    }

    .event-card {
        margin-bottom: 20px;
    }

    .container-left,
    .container-right {
        width: 100%;
        z-index: 1;
    }

    .container-left:before,
    .container-right:before {
        background: none;
    }

    .container-right {
        left: 0;
    }

    .container-left {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .event-date {
        border-radius: 10px;
    }

    .event-title {
        font-size: 30px;
    }

    .event-location {
        font-size: 14px;
    }
}