*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, sans-serif;
}

body{
background:url('../img/bg.jpg') center center/cover no-repeat fixed;
height:100vh;
position:relative;
color:white;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,40,90,0.70);
backdrop-filter:blur(4px);
}

.home-container{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
height:100vh;
padding:20px;
text-align:center;
}

.logo{
width:110px;
height:110px;
object-fit:contain;
margin-bottom:20px;
background:white;
border-radius:50%;
padding:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

h1{
font-size:34px;
font-weight:700;
margin-bottom:5px;
}

h2{
font-size:18px;
font-weight:300;
margin-bottom:35px;
}

.menu-box{
width:100%;
max-width:420px;
display:flex;
flex-direction:column;
gap:15px;
}

.menu-btn{
display:block;
padding:18px;
border-radius:18px;
background:linear-gradient(135deg,#0d6efd,#0a58ca);
color:white;
text-decoration:none;
font-size:18px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
transition:0.3s;
}

.menu-btn:hover{
transform:translateY(-3px);
background:linear-gradient(135deg,#1c7dff,#0d6efd);
}

.admin-btn{
margin-top:25px;
padding:12px 25px;
background:white;
color:#0d6efd;
border-radius:30px;
text-decoration:none;
font-weight:700;
}

footer{
position:absolute;
bottom:10px;
width:100%;
text-align:center;
z-index:2;
font-size:13px;
}

footer a{
color:white;
text-decoration:none;
opacity:0.9;
}

@media(max-width:768px){

h1{
font-size:26px;
}

h2{
font-size:16px;
}

.menu-btn{
font-size:16px;
padding:16px;
}

.logo{
width:90px;
height:90px;
}

}