/* =====================================
   HERO SECTION
   MINECRAFT NETWORK
===================================== */


.hero {

    position:relative;

    min-height:calc(100vh - 90px);

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

    padding:60px 10%;

}



/* Hintergrund */

.hero-background {

    position:absolute;

    inset:0;

    overflow:hidden;

    z-index:0;

}



.glow {

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

}



.glow-one {

    width:500px;

    height:500px;

    background:rgba(0,123,255,.25);

    top:-200px;

    left:-150px;

}



.glow-two {

    width:400px;

    height:400px;

    background:rgba(0,80,255,.2);

    bottom:-150px;

    right:-100px;

}





/* Inhalt */


.hero-content {

    position:relative;

    z-index:2;

    max-width:1000px;

    text-align:center;

}



/* Badge */


.server-badge {

    display:inline-block;

    padding:10px 25px;

    border-radius:30px;

    background:rgba(0,123,255,.15);

    border:1px solid rgba(0,123,255,.4);

    color:#9cbcff;

    margin-bottom:30px;

}



/* Titel */


.hero h1 {


    font-size:clamp(3rem,6vw,6rem);

    color:white;

    font-weight:900;

    line-height:1.1;

    margin-bottom:30px;

}



.hero h1 span {


    display:block;

    color:#2ca7ff;

    text-shadow:

    0 0 30px rgba(44,167,255,.8);

}



/* Beschreibung */


.hero-description {


    max-width:750px;

    margin:auto;

    color:#b9c7d9;

    font-size:1.25rem;

    line-height:1.7;

    margin-bottom:45px;


}



/* Buttons */


.hero-buttons {


    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



.btn-primary,
.btn-secondary {


    padding:16px 40px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;


}



.btn-primary {


    background:#007BFF;

    color:white;

    box-shadow:

    0 0 30px rgba(0,123,255,.5);


}



.btn-primary:hover {


    transform:translateY(-5px);


}



.btn-secondary {


    border:1px solid #2ca7ff;

    color:white;


}



.btn-secondary:hover {


    background:rgba(44,167,255,.15);


}





/* Server Informationen */


.server-info {


    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:60px;

    flex-wrap:wrap;


}



.info-box {


    min-width:200px;

    padding:25px;


    background:rgba(255,255,255,.05);


    border:

    1px solid rgba(255,255,255,.1);


    border-radius:15px;


    backdrop-filter:blur(10px);


}



.info-box h3 {


    color:#2ca7ff;

    margin-bottom:10px;


}



.info-box p {


    color:white;

}





/* Mobile */


@media(max-width:768px){


.hero {

    padding:40px 5%;

}


.server-info {


    flex-direction:column;

}



.info-box {


    width:100%;

}


}


/* SERVER POPUP */


.server-popup {

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.75);

    justify-content:center;

    align-items:center;

    z-index:999;

}



.server-popup-content {

    background:#071525;

    border:1px solid rgba(44,167,255,.4);

    border-radius:20px;

    padding:40px;

    width:400px;

    max-width:90%;

    text-align:center;

}



.server-popup-content h2 {

    color:white;

    margin-bottom:30px;

}



.server-option {

    background:rgba(255,255,255,.05);

    padding:20px;

    margin-bottom:20px;

    border-radius:12px;

}



.server-option h3 {

    color:#2ca7ff;

}



.server-option p {

    color:white;

    font-size:1.1rem;

}



.close-popup {

    position:absolute;

    margin-left:320px;

    margin-top:-25px;

    font-size:30px;

    color:white;

    cursor:pointer;

}