*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#020617;
    color:white;
}

/* NAVBAR */

nav{
    width:100%;
    padding:22px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(2,6,23,0.75);
    backdrop-filter:blur(12px);
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#38bdf8;
}

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

nav ul li a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover{
    color:#38bdf8;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    background:
    linear-gradient(rgba(2,6,23,0.75),rgba(2,6,23,0.88)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30");

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-content{
    text-align:center;
    max-width:950px;
    padding:20px;
}

.small-title{
    color:#38bdf8;
    font-size:18px;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:78px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text{
    font-size:20px;
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#38bdf8;
    color:#020617;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
    background:white;
}

.secondary-btn{
    border:2px solid #38bdf8;
    color:white;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.secondary-btn:hover{
    background:#38bdf8;
    color:#020617;
}

/* FEATURES */

.features{
    width:90%;
    margin:auto;
    margin-top:-80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    position:relative;
    z-index:100;
}

.feature-card{
    background:#0f172a;
    padding:35px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    margin-bottom:12px;
    font-size:22px;
}

/* EVENTS */

.events-section{
    padding:120px 70px 80px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.section-header h2{
    font-size:48px;
    margin-bottom:10px;
}

.section-header p{
    color:#94a3b8;
}

.event-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.event-card{
    background:#0f172a;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
    transition:0.4s;
}

.event-card:hover{
    transform:translateY(-10px);
}

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

.event-content{
    padding:28px;
}

.category{
    background:#0ea5e9;
    color:white;
    padding:7px 14px;
    border-radius:30px;
    font-size:13px;
    display:inline-block;
    margin-bottom:18px;
}

.event-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.event-content p{
    color:#cbd5e1;
    line-height:1.7;
}

.event-details{
    margin-top:20px;
    margin-bottom:25px;
}

.book-btn{
    display:inline-block;
    background:#22c55e;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:35px;
    font-weight:bold;
    transition:0.3s;
}

.book-btn:hover{
    background:#16a34a;
}

/* STATS */

.stats-section{
    width:90%;
    margin:auto;
    padding:90px 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#0f172a;
    padding:45px;
    border-radius:24px;
    text-align:center;
}

.stat-box h1{
    font-size:52px;
    color:#38bdf8;
    margin-bottom:10px;
}

/* FORMS */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-top:130px;
}

form{
    background:#0f172a;
    max-width:550px;
    margin:40px auto;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

form h1{
    text-align:center;
    margin-bottom:25px;
}

input, textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#1e293b;
    color:white;
}

textarea{
    min-height:130px;
    resize:none;
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#38bdf8;
    color:#020617;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:white;
}

/* DASHBOARD */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin:45px 0;
}

.stat-card{
    background:#0f172a;
    padding:40px;
    border-radius:22px;
    text-align:center;
}

.stat-card h3{
    font-size:45px;
    color:#38bdf8;
    margin-bottom:10px;
}

.dashboard-actions{
    text-align:center;
    margin-bottom:40px;
}

.action-btn{
    background:#38bdf8;
    color:#020617;
    padding:15px 30px;
    border-radius:35px;
    text-decoration:none;
    font-weight:bold;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:40px;
    background:#0f172a;
    border-radius:20px;
    overflow:hidden;
}

th, td{
    padding:18px;
    text-align:left;
}

th{
    background:#1e293b;
    color:#38bdf8;
}

tr{
    border-bottom:1px solid #1e293b;
}

td a{
    color:#38bdf8;
    text-decoration:none;
    margin-right:10px;
}

/* FOOTER */

footer{
    background:#020617;
    text-align:center;
    padding:50px 20px;
    margin-top:80px;
}

footer h2{
    color:#38bdf8;
    margin-bottom:15px;
    font-size:34px;
}

.footer-small{
    color:#64748b;
    margin-top:10px;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:18px;
        padding:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-text{
        font-size:17px;
    }

    .events-section{
        padding:90px 20px;
    }

    .section-header h2{
        font-size:35px;
    }

}
.search-box{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:40px;
}

.search-box input{
    width:60%;
    padding:16px 22px;
    border-radius:40px;
    border:1px solid rgba(56,189,248,0.4);
    background:rgba(15,23,42,0.85);
    color:white;
    font-size:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}