 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
}

/* NAVBAR */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:rgba(0,0,0,.5);
    backdrop-filter:blur(10px);
}

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

nav a{
    color:white;
    text-decoration:none;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:#00e5ff;
}

.logo{
    font-size:1.5rem;
    font-weight:bold;
    color:#00e5ff;
    text-shadow:0 0 15px #00e5ff;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    transition:.3s;
}

nav a:hover{
    color:#00e5ff;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content h1{
    font-size:5rem;
    letter-spacing:6px;

    color:#00e5ff;

    text-shadow:
    0 0 10px #00e5ff,
    0 0 20px #00e5ff,
    0 0 40px #00e5ff;
}

.hero-content p{
    margin-top:20px;
    font-size:1.2rem;
}

.btn{
    margin-top:30px;

    padding:15px 35px;

    text-decoration:none;

    color:white;

    border:2px solid #00e5ff;

    border-radius:50px;

    transition:.3s;
}

.btn:hover{
    background:#00e5ff;
    color:black;

    box-shadow:
    0 0 20px #00e5ff,
    0 0 40px #00e5ff;
}

/* ABOUT */

.about{
    padding:100px 10%;
    text-align:center;
}

.about h2{
    color:#00e5ff;
    margin-bottom:20px;
}

.about p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/* GALLERY */

.gallery{
    padding:100px 10%;
}

.gallery h2{
    text-align:center;
    color:#00e5ff;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;

    border-radius:15px;

    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);

    box-shadow:
    0 0 20px #00e5ff;
}

/* VIDEOS */

/* VIDEOS */

.videos{
    padding:100px 10%;
}

.videos h2{
    text-align:center;
    margin-bottom:40px;
    color:#00e5ff;
}

/* PARTY HIGHLIGHT VIDEOS */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:30px;
}

.video-grid video{
    width:100%;
    height:500px;
    object-fit:cover;

    border-radius:15px;

    box-shadow:
    0 0 20px rgba(0,229,255,.3);

    transition:.3s;
}

.video-grid video:hover{
    transform:scale(1.02);
}

/* DJ SETUP VIDEO */

.setup-video-container{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.setup-video{
    width:100%;
    max-width:900px;

    height:auto;

    border-radius:15px;

    object-fit:contain;

    box-shadow:
    0 0 20px rgba(0,229,255,.3);

    transition:.3s;
}

.setup-video:hover{
    transform:scale(1.02);
}

/* MOBILE */

@media (max-width:768px){

    header{
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#050505;

        flex-direction:column;
        text-align:center;

        display:none;

        padding:20px 0;
    }

    nav.active{
        display:flex;
        box-shadow:0 0 25px #00e5ff;
    }

    nav a{
        margin-left:0;
        padding:15px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .hero-content h1{
        font-size:2.5rem;
        letter-spacing:2px;
    }

    .hero-content p{
        font-size:1rem;
        padding:0 20px;
    }

    .about,
    .gallery,
    .videos,
    .contact{
        padding:70px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-grid video{
        height:280px;
        object-fit:cover;
    }

    .setup-video{
        width:100%;
        height:auto;
        max-height:400px;
        object-fit:contain;
    }

    input,
    textarea,
    button{
        font-size:16px;
    }
}
/* CONTACT */

.contact{
    padding:100px 10%;
}

.contact h2{
    text-align:center;
    margin-bottom:40px;
    color:#00e5ff;
}

form{
    max-width:700px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:none;
    border-radius:10px;
}

textarea{
    min-height:150px;
}

button{
    padding:15px;

    background:#00e5ff;
    color:black;

    border:none;
    border-radius:10px;

    cursor:pointer;
    font-weight:bold;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px;
    background:black;
}

footer h3{
    color:#00e5ff;
}
/* MOBILE */

@media (max-width:768px){
.video-grid video{
        height:300px;
    }


    header{
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#050505;

        flex-direction:column;
        text-align:center;

        display:none;
        padding:20px 0;
    }

    nav.active{
        display:flex;
        box-shadow:0 0 25px #00e5ff;
    }

    nav a{
        margin-left:0;
        padding:15px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .hero-content h1{
        font-size:2.5rem;
        letter-spacing:2px;
    }

    .hero-content p{
        font-size:1rem;
        padding:0 20px;
    }

    .about,
    .gallery,
    .videos,
    .contact{
        padding:70px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-grid video{
        max-height:300px;
        object-fit:cover;
    }

    input,
    textarea,
    button{
        font-size:16px;
    }
}
@keyframes neonGlow{
    0%{
        text-shadow:
        0 0 10px #00e5ff,
        0 0 20px #00e5ff;
    }

    50%{
        text-shadow:
        0 0 20px #00e5ff,
        0 0 40px #00e5ff,
        0 0 60px #00e5ff;
    }

    100%{
        text-shadow:
        0 0 10px #00e5ff,
        0 0 20px #00e5ff;
    }
}

.hero-content h1{
    animation: neonGlow 2s infinite;
}

/* DJ SETUP VIDEO */

.setup-video-container{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.setup-video{
    width:100%;
    max-width:900px;

    height:auto;

    border-radius:15px;

    object-fit:contain;

    box-shadow:
    0 0 20px rgba(0,229,255,.3);
}

video{
    display:block;
    width:100%;
    background:black;
}