* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #0a0a0a;
    z-index: 9999;
}

.loader-logo {
    width: 150px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

.logo-img {
    width: 150px;
    height: auto;
    max-width: 100%;
}

.hero-logo {
    width: 500px;
    height: auto;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #00eaff;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0a0a0a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #00eaff;
    width: 0;
    z-index: 9999;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
}

h1, h2, .cta-button {
    font-family: 'Orbitron', sans-serif;
}

.nav-links a {
    padding: 15px 0;
    font-size: 1.5rem;
}

.nav-links li a {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00eaff;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff;
    position: relative;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #00eaff;
}

#burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 45px;
    width: 45px;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
}

#burger div {
    width: 45px;
    height: 4px;
    background-color: white;
    transition: all 0.3s ease;
}

#burger.toggle .line1 {
    transform: rotate(45deg) translate(6px, 6px);
}

#burger.toggle .line2 {
    opacity: 0;
}

#burger.toggle .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.language-switcher a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #00eaff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switcher a:hover {
    background-color: #00eaff;
    color: #0a0a0a;
}

@media (max-width: 768px) {

    .logo-img {
        width: 100px;
    }

    .hero-logo {
        width: 250px;
    }
    .nav-links {
        display: none; 
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 70px; 
        right: 0;
        background-color: rgba(10, 10, 10, 0.9);
        width: 100%;
        height: calc(100vh - 70px);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .language-switcher {
        position: relative;
        top: 0;
        right: 0;
        display: none;
    }
    
    .nav-links.active .language-switcher {
        display: flex; 
        justify-content: center;
        margin-top: 20px;
    }

    #burger {
        display: flex;
    }

    .language-switcher {
        position: relative;
        top: 0;
        right: 0;
        display: none;
    }
    
    .nav-links.active .language-switcher {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #00eaff;
    color: #0a0a0a;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #00b6cc;
}

.about-section {
    padding: 100px 20px;
    background-color: #111;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00eaff;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.music-section {
    padding: 100px 20px;
    background-color: #1f1f1f;
    text-align: center;
}

.music-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00eaff;
}

.music-embed {
    margin: 20px 0;
}

.music-embed iframe {
    border-radius: 10px;
    border: 2px solid #00eaff;
}

.music-embed p {
    margin-top: 10px;
    font-size: 1rem;
}

.events-section {
    padding: 100px 20px;
    background-color: #111;
    text-align: center;
}

.events-section h2 {
    font-size: 2.5rem;
    color: #00eaff;
}

.event-card {
    background-color: #222;
    padding: 30px; 
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-card h3 {
    font-size: 1.8rem;
    color: #00eaff;
}

.event-card p {
    font-size: 1rem;
    color: #ccc;
}

.details-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #00eaff;
    color: #0a0a0a;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.details-button:hover {
    background-color: #00b6cc;
}

.socials-section {
    padding: 100px 20px;
    background-color: #1f1f1f;
    text-align: center;
}

.socials-section h2 {
    font-size: 2.5rem;
    color: #00eaff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-section {
    padding: 100px 20px;
    background-color: #1f1f1f;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00eaff;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 5px;
}

.contact-section button {
    padding: 15px 30px;
    background-color: #00eaff;
    color: #0a0a0a;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #00b6cc;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #0a0a0a;
    color: #666;
}