﻿/*    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0c1445 0%, #1a237e 50%, #000051 100%);
            min-height: 100vh;
            color: #fff;
        } */

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    /*     position: relative;
            width: 100%;
            min-height: 60vh;
            overflow: hidden;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
    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;
}

/*  .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            min-height: 60vh;
        } */

.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);
    /*    background: linear-gradient(45deg, #ffffff, #e3f2fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
}

/*   .calendar-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #2196f3, #1976d2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
 */
/* .calendar-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 25px rgba(33, 150, 243, 0.4);
                background: linear-gradient(45deg, #1976d2, #1565c0);
            } */

.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);
    }
}

/* Responsive Design */
/*@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        border-radius: 0;
    }

    .hero-content {
        padding: 1.5rem;
        min-height: 50vh;
    }

    .event-title {
        margin-bottom: 1.5rem;
    }

    .calendar-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .event-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .calendar-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .event-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-content {
        min-height: 70vh;
    }
}*/



