*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050816;
    color:#fff;
}

/* Loading */

#loading{
    position:fixed;
    width:100%;
    height:100vh;
    background:#050816;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader{
    width:70px;
    height:70px;
    border:6px solid #222;
    border-top:6px solid #00e5ff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

#loading h2{
    margin-top:20px;
    color:#00e5ff;
    font-size:32px;
    letter-spacing:3px;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* Navbar */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(15px);
    z-index:999;
}

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

.logo{
    font-size:28px;
    color:#00e5ff;
    font-weight:bold;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

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

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

.icons{
    display:flex;
    gap:20px;
    font-size:22px;
}

.icons i{
    cursor:pointer;
}

/* Hero */

.hero{
    height:100vh;
    background:url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1800&q=80") center/cover;
    display:flex;
    align-items:center;
    padding:0 8%;
    position:relative;
}

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

.hero-content{
    position:relative;
    max-width:650px;
}

.hero h1{
    font-size:70px;
    color:#00e5ff;
    margin-bottom:20px;
}

.hero p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:30px;
}

.buttons button{
    padding:14px 35px;
    border:none;
    border-radius:40px;
    cursor:pointer;
    font-size:17px;
    margin-right:10px;
}

.watch{
    background:#00e5ff;
    color:black;
    font-weight:bold;
}

.info{
    background:transparent;
    color:white;
    border:2px solid #00e5ff;
}

/* Section */

section{
    padding:90px 8%;
}

section h2{
    margin-bottom:35px;
    color:#00e5ff;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    background:#10182f;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 25px #00e5ff;
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card h3{
    padding:15px;
}

.card span{
    display:block;
    padding:0 15px 15px;
    color:gold;
}

/* Schedule */

.schedule{
    display:grid;
    gap:15px;
}

.schedule div{
    background:#10182f;
    padding:18px;
    border-radius:12px;
}

/* Footer */

footer{
    background:#02030a;
    text-align:center;
    padding:40px;
}

footer h2{
    color:#00e5ff;
}

/* Back to Top */

#top{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#00e5ff;
    color:black;
    font-size:22px;
    cursor:pointer;
}

/* Responsive */

@media(max-width:768px){

nav ul{
display:none;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:15px;
}

                                                 }
