/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    object-position: center;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #cc0000;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 20px;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 100;
    color: #cccccc;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

/* Sections */
.contact {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}



/* Contact */
.contact-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    margin: 40px 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-link:first-child {
    text-align: right;
    padding-right: 20px;
}

.contact-link:last-child {
    text-align: left;
    padding-left: 20px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: #cc0000;
    color: #cc0000;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    color: #666666;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .events,
    .about,
    .contact {
        padding: 60px 0;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-links {
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .nav-link {
        font-size: 12px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 12px;
    }
}