/* Event Page Styles */
.event-page {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.event-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 5rem;
    background-color: #f8f8f8; /* Light background for header */
    border-bottom: 1px solid #eee;
}

.event-header h1 {
    font-family: 'Bitter', serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: #027faa; /* Use theme color */
    margin-bottom: 0.5rem;
}

.event-date {
    font-size: 1.5rem;
    color: black;
    font-weight: 700; /* Bold for event date */
}

.event-content {
    display: flex;
    gap: 4rem;
    padding: 0 5%;
    margin-bottom: 4rem;
}

.event-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    flex: 1;
}

.event-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700; /* Bold for event details heading */
}

.event-location {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.event-description {
    line-height: 1.8;
    color: #666;
}

.event-program {
    padding: 3rem 5%;
    background-color: #f9f9f9;
    margin-bottom: 4rem;
    display: none; /* Hide competition schedule on all competition pages */
}

.event-program h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700; /* Bold for event program heading */
}

.event-program ul {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.event-program li {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    color: #666;
    font-size: 1.1rem;
}

.event-program li:last-child {
    border-bottom: none;
}

/* Ticket Section */
.ticket-section {
    padding: 0 5%;
}

.ticket-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700; /* Bold for ticket section heading */
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ticket-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.ticket-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700; /* Bold for ticket card heading */
}

.price {
    font-size: 2.5rem;
    color: black;
    font-weight: 700; /* Bold for price */
    margin-bottom: 1.5rem;
}

.ticket-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 1rem;
}

.ticket-card li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.ticket-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: black;
}

.purchase-button {
    background-color: black;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700; /* Bold for purchase buttons */
    cursor: pointer;
    transition: all 0.3s ease; /* Updated transition */
    width: 100%;
}

.purchase-button:hover {
    /* Removed background-color change */
    filter: brightness(1.4); /* Noticeably lighter grey */
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-content {
        flex-direction: column;
    }

    .event-image {
        min-height: 300px;
    }

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

    .event-date {
        font-size: 1.2rem;
    }

    .ticket-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Animations */
.event-header,
.event-content,
.event-program,
.ticket-card {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 