*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#0B1220;
    color:white;
}

/* HEADER */
header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:15px 20px;
    background:rgba(0,0,0,0.8);
    z-index:1000;
}

header{
    background:#0F172A;
}

.logo{
    color:gold;
    font-weight:bold;
}

nav a{
    color:white;
    margin:0 10px;
    text-decoration:none;
}

nav a:hover{
    color:#22D3EE;
}

/* HERO */
.hero{
    height:100vh;
    background:url("images/magic1.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-text{
    position:relative;
    z-index:2;
    transform:translateY(-50px);

}

.hero-text h1{
    font-size:42px;
    line-height:1.2;
    color:gold;
    text-shadow:0 0 10px black;
}
.hero-text h1{
    margin-bottom:90px;
}

.hero-text h1{
    text-shadow:0 0 15px #2563EB;
}

.hero-text p{
    margin:10px 0;
    font-size:18px;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 25px;
    background:#2563EB;
    color:white;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 0 15px rgba(37,99,235,0.4);
}

.btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 30px #60A5FA;
}
/* SECTIONS */
.section{
    padding:80px 20px;
    text-align:center;
}

.dark{
    background:#111;
}

/* GALLERY */
.grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.grid img{
    width:280px;
    height:200px;
    object-fit:cover;
    border-radius:10px;
}
/* FOOTER */
footer{
    background:#111;
    text-align:center;
    padding:20px;
}

/* MOBILE */
@media(max-width:768px){
    .hero-text{
        transform:translateY(-50px);
    }
}





.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    font-size:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    box-shadow:0 0 15px rgba(0,0,0,0.3);
    text-decoration:none;
    z-index:9999;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.1);}
    100%{transform:scale(1);}
}




#particles{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    pointer-events:none;
    z-index:0;
}

.particle{
    position:absolute;
    width:6px;
    height:6px;
    background:gold;
    border-radius:50%;
    animation:fall linear infinite;
    opacity:0.6;
}

@keyframes fall{
    0%{
        transform:translateY(-10vh) scale(0);
        opacity:0;
    }
    50%{
        opacity:1;
    }
    100%{
        transform:translateY(100vh) scale(1);
        opacity:0;
    }
}



/* hide menu icon on desktop */
.menu{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:white;
}

/* desktop nav normal */
nav{
    display:flex;
    gap:15px;
}

/* MOBILE ONLY */
@media(max-width:768px){

    .menu{
        display:block; /* ☰ show only on mobile */
    }

    nav{
        display:none; /* hide menu initially */
        flex-direction:column;
        background:#111;
        position:absolute;
        top:60px;
        right:10px;
        width:180px;
        padding:10px;
        border-radius:10px;
    }

    nav a{
        padding:10px;
        border-bottom:1px solid #333;
    }

    nav.active{
        display:flex;
    }
}





.gallery-slider{
    padding:60px 20px;
    text-align:center;
    background:#0B1220;
}

.slider-container{
    overflow:hidden;
    width:100%;
}

.slider-track{
    display:flex;
    width:max-content;
    animation:scroll 30s linear infinite;
    gap:10px;
}

.slider-track img{
    width:300px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
}

/* INFINITE SMOOTH SCROLL */
@keyframes scroll{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}



/* MAGIC PARTICLES */

#magic-particles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    overflow:hidden;
    z-index:9999;
}

.magic-particle{
    position:absolute;
    width:6px;
    height:6px;
    background:#3B82F6;
    border-radius:50%;
    box-shadow:0 0 15px #60A5FA;
    animation:magicFloat linear infinite;
}

/* PARTICLE ANIMATION */

@keyframes magicFloat{

    0%{
        transform:translateY(100vh);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    100%{
        transform:translateY(-10vh);
        opacity:0;
    }
}

/* CURSOR GLOW */

.cursor-glow{
    position:fixed;
    width:20px;
    height:20px;
    background:rgba(59,130,246,0.4);
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%, -50%);
    z-index:10000;
    box-shadow:0 0 20px #60A5FA;
}