/* Evento Styles */

.evento {
    padding-top: 120px; /* Extra padding to account for fixed header */
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.event-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.event-info {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Map Section */
.map-container {
    margin: 60px 0;
    text-align: center;
}

.map-container h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.map {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

.directions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.direction-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 20px;
    width: 280px;
    text-align: left;
}

.direction-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Schedule Section */
.schedule {
    margin: 60px 0;
    text-align: center;
}

.schedule h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.schedule-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 120px;
}

.schedule-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.schedule-time {
    width: 120px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: right;
    padding-right: 25px;
    padding-top: 5px;
}

.schedule-content {
    flex: 1;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 20px;
    margin-left: 25px;
    text-align: left;
}

.schedule-content::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--secondary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    left: 114px;
    top: 10px;
}

.schedule-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

/* Accommodations Section */
.accommodations {
    margin: 60px 0;
    text-align: center;
}

.accommodations h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.accommodations > p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.accommodation-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.accommodation-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
}

.accommodation-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.accommodation-card p {
    margin-bottom: 10px;
}

.accommodation-card .btn-secondary {
    margin-top: 15px;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-card {
        width: 100%;
        max-width: 350px;
    }
    
    .schedule-timeline::before {
        left: 80px;
    }
    
    .schedule-time {
        width: 80px;
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .schedule-content {
        margin-left: 15px;
    }
    
    .schedule-content::before {
        left: 74px;
    }
    
    .direction-card,
    .accommodation-card {
        width: 100%;
        max-width: 350px;
    }
}

