/* Event Hero Section */
.event-hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--text-color);
}

.event-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--shadow-color);
}

.event-date, .event-location {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--shadow-color);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn.primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.hero-buttons .btn.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Event Details Section */
.event-details {
    padding: 2rem;
    background-color: var(--background-light);
}

.event-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.event-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.event-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.event-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Registration Form Section */
.registration-form {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
}

.registration-form h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.registration-form form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

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

.ticket-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.ticket-options h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.ticket-option {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.ticket-option:hover {
    transform: translateY(-10px);
}

.ticket-option h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ticket-price {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ticket-features i {
    color: var(--primary-color);
}

/* Event Gallery Section */
.event-gallery {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.event-gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: center;
}

.event-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-gallery-item:hover img {
    transform: scale(1.05);
}

.event-gallery-item.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .event-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 600px;
    }
    
    .event-gallery {
        padding: 3rem 1rem;
    }

    .event-details h2, .event-gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 0.3rem;
    }

    .event-details h2::after, .event-gallery h2::after {
        width: 40px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .event-gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 0;
        width: 100%;
        max-width: 350px;
    }
    
    .event-gallery {
        padding: 2rem 1rem;
    }
    
    .event-gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Enhanced Mobile Responsiveness for Event Page */
@media (max-width: 768px) {
    .event-hero {
        height: 80vh;
        padding-bottom: 50px;
    }
    
    .event-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .event-date, .event-location {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .event-details-container {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .event-details-content {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .event-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        width: 100%;
        padding: 1.5rem;
    }
    
    .event-form-container {
        width: 100%;
        height: 500px;
    }
    
    .event-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-gallery-item {
        height: 250px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .event-hero-content h1 {
        font-size: 2rem;
    }
    
    .countdown-item {
        width: 45%;
        margin: 0.5rem;
    }
    
    .event-gallery-item {
        height: 200px;
    }
}

/* Medium Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .event-hero-content h1 {
        font-size: 3rem;
    }
    
    .event-details-container {
        padding: 3rem 2rem;
    }
    
    .event-features {
        flex-wrap: wrap;
    }
    
    .feature {
        width: calc(50% - 1rem);
    }
    
    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .event-hero {
        height: auto;
        min-height: 100vh;
    }
    
    .event-hero-content {
        padding: 5rem 2rem;
    }
} 