*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#fff;
    color:#333;
}

/* NAVBAR */
.navbar{
    width:100%;
    padding:15px 40px;
    background:#800000; /* Maroon */
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
}

.navbar .logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.navbar .logo img{
    width:40px;
}

.admin-btn{
    color:white;
    padding:8px 18px;
    border:1px solid #fff;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
}

.admin-btn:hover{
    background:white;
    color:#800000;
}

/* HERO SECTION */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px 40px;
}

.left{
    width:50%;
}

.left h1{
    font-size:40px;
    color:#800000;
}

.left p{
    font-size:18px;
    margin:15px 0;
}

.btn-register{
    background:#800000;
    color:white;
    padding:12px 25px;
    border-radius:4px;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.btn-register:hover{
    background:#a00000;
}

/* Right Image */
.hero-img{
    width:100%;
    max-width:500px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer{
    margin-top:50px;
    background:#800000;
    color:white;
    text-align:center;
    padding:20px;
}

.footer .social a{
    color:white;
    margin:0 10px;
    text-decoration:none;
}

/* ADMIN LOGIN */
.login-box{
    width:320px;
    margin:50px auto;
    padding:30px;
    border:1px solid #ccc;
    border-radius:8px;
    background:white;
}

.login-box input{
    width:100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #800000;
    border-radius:5px;
}

.login-box button{
    width:100%;
    background:#800000;
    color:white;
    padding:10px;
    border:none;
    border-radius:5px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero{
        flex-direction:column;
        text-align:center;
    }
    .left, .right{
        width:100%;
    }
    .hero-img{
        margin-top:20px;
    }
}
