*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    overflow-x:hidden;
    position:relative;
}

/* BACKGROUND IMAGE */
.background-image{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../img/background.jpg') no-repeat center center/cover;
    z-index:-2;
}

/* DARK OVERLAY */
.background-image::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

/* CONTAINER */
.container{
    max-width:1200px;
    width:100%;
    text-align:center;
    position:relative;
    z-index:10;
}

.header{
    margin-bottom:50px;
    color:white;
    text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

.header h1{
    font-size:3rem;
    margin-bottom:15px;
}

.header p{
    font-size:1.2rem;
    opacity:.9;
}

/* MENU */
.menu-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.menu-box{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:30px 25px;
    width:300px;
    min-height:250px;
    cursor:pointer;
    transition:.4s;
    border:1px solid rgba(255,255,255,.2);
}

.menu-box:hover{
    transform:translateY(-10px) scale(1.05);
    background:rgba(255,255,255,.25);
}

.menu-icon{
    font-size:4rem;
    margin-bottom:20px;
}

.menu-title{
    font-size:1.5rem;
    font-weight:700;
    color:white;
    margin-bottom:10px;
}

.menu-desc{
    color:rgba(255,255,255,.9);
    font-size:1rem;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:768px){
    .menu-container{
        flex-direction:column;
        align-items:center;
    }
}
