@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #ff0057, #a800ff);
    color: #ffffff;
}

header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 36px;
    color: #00ffea;
    text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

nav a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

#home {
    position: relative;
    text-align: center;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#home .content {
    position: relative;
    z-index: 2;
}

#home h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #00ffea;
    text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

#home p {
    font-size: 20px;
    margin-bottom: 20px;
}

#home button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #00ffea;
    color: #000000;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00ffea;
    text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

section p, section ul {
    font-size: 16px;
    line-height: 1.6;
}

.gallery-thumbnails img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 2px solid #00ffea;
    box-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
}

footer p, footer a {
    color: #ffffff;
    margin: 0 5px;
    text-decoration: none;
    font-size: 12px;
}

.social-media-icons img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    filter: drop-shadow(0 0 5px #00ffea);
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    #home h2 {
        font-size: 32px;
    }
    
    #home p {
        font-size: 16px;
    }
    
    #home button {
        font-size: 16px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    section p, section ul {
        font-size: 14px;
    }
    
    footer p, footer a {
        font-size: 10px;
    }
}
