* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    background-image: url('./index/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 1200px;
    animation: fadeIn 1.5s ease-in;
}

.title {
    color: white;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.divider {
    width: 100px;
    height: 2px;
    background: white;
    margin: 0 auto;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        letter-spacing: 1px;
    }

    .container {
        justify-content: center;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        letter-spacing: 0.5px;
    }
}

/* Events Section */
.events-section {
    position: absolute;
    bottom: 3rem;
    text-align: center;
    animation: fadeIn 2s ease-in;
}

.navigation-section {
    position: absolute;
    bottom: 3rem;
    width: min(1200px, calc(100% - 4rem));
    text-align: center;
    animation: fadeIn 2s ease-in;
}

.events-title {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.events-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.navigation-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    flex-wrap: wrap;
}

.event-link {
    color: white;
    text-decoration: none;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navigation-link {
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
    padding: 0;
    border: none;
    background: transparent;
    transition: text-shadow 0.3s ease;
}

.event-link:hover {
    transform: translateY(-5px);
    text-shadow: 3px 3px 25px rgba(255, 255, 255, 0.8);
}

.navigation-link:hover {
    text-shadow: 3px 3px 25px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .events-section {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }

    .navigation-section {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
        width: min(100%, calc(100% - 2rem));
    }

    .events-title,
    .event-link {
        letter-spacing: 1px;
    }

    .navigation-link {
        letter-spacing: 0.1em;
    }
}

@media (max-width: 480px) {

    .events-title,
    .event-link {
        letter-spacing: 0.5px;
    }

    .navigation-links {
        gap: 0.75rem;
    }

    .navigation-link {
        width: 100%;
        max-width: 320px;
    }
}

   