/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: linear-gradient(135deg, #084CFB, #ADF3FD);
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #ADF3FD;
}

/* Header */
#main-header {
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#main-header h1 {
    font-size: 72px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: float 3s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Section */
#about {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

#about h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

#about p {
    font-size: 20px;
    width: 60%;
    margin: 0 auto;
}

/* Video Gallery */
#videos {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.video-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.video-container {
    width: 30%;
    padding: 20px;
}

video {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

video:hover {
    transform: scale(1.1);
}

/* Join Section */
#join {
    padding: 100px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

#join h2 {
    font-size: 48px;
}

#join-button {
    background-color: #084CFB;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#join-button:hover {
    background-color: #ADF3FD;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
}

/* Background Elements (clouds, snowflakes, stars) */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.clouds, .snowflakes, .stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.clouds {
    background: url('clouds.png') repeat-x;
    animation: moveClouds 30s linear infinite;
}

@keyframes moveClouds {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

.snowflakes {
    background: url('snowflakes.png') repeat-x;
    animation: fallSnow 20s linear infinite;
}

@keyframes fallSnow {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.stars {
    background: url('stars.png') repeat;
    animation: twinkleStars 10s ease-in-out infinite;
}

@keyframes twinkleStars {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
