.event-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.event-meta {
    font-size: 1rem;
    opacity: 0.95;
}

.event-details {
    padding-bottom: 100px;
    color: white;
    background-size: cover;
}

.event-details-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
}

.event-details .container {
    max-width: 800px;
    padding: 0 80px;
    margin: 0 auto;
}

.event-details h2 {
    margin-bottom: 1rem;
}

.event-description p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.event-program {
    margin: 2rem 0;
}

.event-program ul {
    list-style: none;
    padding-left: 0;
}

.event-program li {
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
}

.event-description .header {
    padding-top: 60px;
    font-size: 42px;
    margin-top: 0;
}

/* INFO BOXES */
.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-box {
    background: rgba(255, 40, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.8);
    color: white;
}

.info-box {
    line-height: 1.6;
}

.info-box h3 {
    margin-bottom: 0.5rem;
}

/* ACTIONS */
.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 50px;
    justify-content: center;
}

.primary-button {
    background-color: #4f46e5;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.primary-button:hover {
    background-color: #3730a3;
}

.secondary-button {
    color: #4f46e5;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
}


/* MOBIL */
@media (max-width: 600px) {
    .header h1 {
        font-size: 2rem;
    }
}

/* MOBIL */
@media (max-width: 1024px) {
    .event-details .container {
        padding: 0 28px;
    }

    .event-description .header {
        padding-top: 48px;
        font-size: 36px;
    }

    .event-details {
        padding-bottom: 70px;
    }
}
