﻿ 
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section { 
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
 
.event-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  
}
 

.content-section {
    flex: 1;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.event-description {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-gallery {
    margin-top: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .image-gallery.loaded {
        opacity: 1;
        transform: translateY(0);
    }

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .gallery-image:hover {
        transform: scale(1.02);
    }

.error-message {
    text-align: center;
    padding: 2rem;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    color: #ffcdd2;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #2196f3;
    animation: spin 1s ease-in-out infinite;
    margin: 2rem auto;
}


a#calendar-link {
    position: absolute;
    top: 83px;
    right: 34px;
    background: blue;
    color: white !important;
    padding: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

