/* Main content styles */
main {
    position: relative;
    z-index: 1;
    padding-top: 70px; /* Height of navbar + extra space */
    min-height: 100vh;
}

.hero-section {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
    color: #ffffff;
    text-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.hero-subtext {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd3a8;
    margin: 0 0 0.75rem 0;
}

.hero-description {
    font-family: 'DM Sans', 'Inter', Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: #f2eaff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Subheading inside hero between title and description */
.hero-section .hero-content h2 {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd3a8;
    margin: 0 0 0.75rem 0;
}

.event-time {
    font-size: 1rem;
    font-weight: 600;
    color: #6a6a69;
    margin: 0 0 1rem 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.event-time i {
    margin-right: 8px;
    color: #ff6a00;
}

.event-time svg {
    display: block;
}

/* Ensure event card contents are centered */
.event-card {
    text-align: center;
}

.price-note {
    font-size: 0.9rem;
    color: #9aa0a6;
    margin-top: -8px;
    margin-bottom: 1rem;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    main {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}
