/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL */

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

body{
    background:#f5f7fb;
    color:#333;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:white;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);

    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#b30000;
}

nav ul{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#b30000;
}

/* HERO SECTION */

.hero{
    height:92vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1615461066841-6116e61058f4?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    color:white;

    animation:fadeIn 2s ease;
}

.hero-text{
    max-width:850px;
    padding:20px;
}

.hero-text h1{
    font-size:68px;
    margin-bottom:25px;
    animation:slideDown 1.5s ease;
}

.hero-text p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

/* BUTTONS */

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

.btn-red,
.btn-white,
.nav-register-btn{
    padding:15px 30px;
    border:none;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.btn-red,
.nav-register-btn{
    background:#b30000;
    color:white;
}

.btn-white{
    background:white;
    color:#b30000;
}

.btn-red:hover,
.btn-white:hover,
.nav-register-btn:hover{
    transform:translateY(-5px) scale(1.05);
}

/* STATS */

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

    padding:90px 40px;
}

.card{
    width:260px;
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.4s;
}

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

.card h2{
    font-size:44px;
    color:#b30000;
    margin-bottom:10px;
}

/* HOW SECTION */

.how{
    padding:80px 40px;
    text-align:center;
}

.how h2{
    font-size:44px;
    margin-bottom:60px;
    color:#b30000;
}

.steps{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.step{
    width:230px;
    background:white;
    padding:40px;
    border-radius:20px;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.step:hover{
    transform:scale(1.05);
}

.step h3{
    width:65px;
    height:65px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#b30000;
    color:white;

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

    font-size:26px;
}

/* FORM PAGES */

.register-container,
.availability-container,
.broadcast-container{
    min-height:100vh;

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

    padding:40px;
}

.register-form,
.broadcast-card,
.availability-card{
    width:450px;

    background:white;

    padding:40px;

    border-radius:22px;

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    animation:fadeIn 1.2s ease;
}

.register-form h1,
.broadcast-card h1,
.availability-card h1{
    text-align:center;
    margin-bottom:30px;
    color:#b30000;
}

.register-form input,
.register-form select,
.broadcast-card input,
.broadcast-card select,
.broadcast-card textarea{
    width:100%;

    padding:15px;
    margin-bottom:20px;

    border:1px solid #ddd;
    border-radius:12px;

    font-size:16px;
}

.register-form button,
.broadcast-card button,
.available-btn,
.unavailable-btn{
    width:100%;

    padding:15px;

    border:none;
    border-radius:12px;

    background:#b30000;
    color:white;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.register-form button:hover,
.broadcast-card button:hover,
.available-btn:hover,
.unavailable-btn:hover{
    transform:translateY(-3px);
    background:#8d0000;
}

/* DASHBOARD */

.dashboard-hero{
    background:linear-gradient(135deg,#b30000,#e63946);

    color:white;

    padding:70px 40px;

    text-align:center;
}

.dashboard-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.dashboard-container{
    padding:40px;
}

.dashboard-cards{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-bottom:40px;
}

.dashboard-card{
    background:white;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.3s;
}

.dashboard-card:hover{
    transform:translateY(-8px);
}

.dashboard-card h2{
    color:#b30000;
    margin-bottom:15px;
}

.dashboard-card p{
    font-size:28px;
    font-weight:bold;
}

/* PROFILE */

.profile-container{
    min-height:100vh;

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

    padding:40px;
}

.profile-card{
    width:420px;

    background:white;

    padding:40px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.profile-card img{
    width:140px;
    height:140px;

    border-radius:50%;

    margin-bottom:20px;
}

.profile-card h1{
    margin-bottom:20px;
    color:#b30000;
}

.profile-card p{
    margin-bottom:12px;
    font-size:17px;
}

.profile-card button{
    margin-top:20px;

    padding:14px 24px;

    border:none;
    border-radius:12px;

    background:#b30000;
    color:white;

    cursor:pointer;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    padding:15px;
    border:1px solid #ddd;
    text-align:center;
}

table th{
    background:#b30000;
    color:white;
}

/* STATUS */

.available{
    color:green;
    font-weight:bold;
}

.unavailable{
    color:red;
    font-weight:bold;
}

/* ANIMATIONS */

@keyframes fadeIn{
    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:768px){

    nav{
        padding:20px;
    }

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

    .hero-text p{
        font-size:18px;
    }

    .dashboard-hero h1{
        font-size:36px;
    }

}

/* =========================
   BROADCAST PAGE
========================= */

.broadcast-container{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
    background:#f5f5f5;
}

.broadcast-card{
    width:100%;
    max-width:650px;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    animation:fadeIn 0.6s ease;
}

.broadcast-card h1{
    text-align:center;
    color:#b30000;
    margin-bottom:10px;
}

.broadcast-subtitle{
    text-align:center;
    color:gray;
    margin-bottom:30px;
}

.broadcast-card form{
    display:flex;
    flex-direction:column;
}

.broadcast-card label{
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.broadcast-card input,
.broadcast-card select,
.broadcast-card textarea{
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

.broadcast-card input:focus,
.broadcast-card select:focus,
.broadcast-card textarea:focus{
    border-color:#b30000;
    box-shadow:0 0 10px rgba(179,0,0,0.2);
}

.broadcast-card textarea{
    resize:none;
}

.broadcast-card button{
    padding:15px;
    border:none;
    border-radius:12px;
    background:#b30000;
    color:white;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.broadcast-card button:hover{
    background:#8f0000;
    transform:translateY(-2px);
}