@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Orbitron',sans-serif;
background:#050505;
color:white;
overflow-x:hidden;
}

/* HERO */

.hero{
min-height:100vh;

background:url("assets/background.jpg");
background-size:97%;
background-position:center top;
background-repeat:no-repeat;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;

position:relative;
padding-top:120px;
}

/* NAVBAR */

nav{
position:fixed;
top:0;
left:0;
width:100%;

padding:20px 40px;

display:flex;
justify-content:space-between;
align-items:center;

background:rgba(0,0,0,.85);
backdrop-filter:blur(15px);

z-index:1000;

border-bottom:1px solid rgba(255,136,0,.3);
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
width:70px;
height:70px;

object-fit:cover;

border-radius:10px;

box-shadow:0 0 25px orange;
}

.logo-area h2{
font-size:18px;
}

.logo-area span{
color:#ff9500;
}

.logo-area p{
font-size:12px;
opacity:.8;
}

/* MENU */

nav ul{
display:flex;
list-style:none;
gap:40px;
}

nav ul li{
font-weight:700;
cursor:pointer;
}

nav ul li a{
color:white;
text-decoration:none;
transition:.3s;
}

nav ul li a:hover{
color:#ff9500;
text-shadow:0 0 15px orange;
}

/* DISCORD */

.discord-btn{
padding:16px 38px;

background:#ff9500;

border:none;

border-radius:15px;

color:white;

font-weight:bold;

font-size:15px;

cursor:pointer;

box-shadow:0 0 10px rgba(255,136,0,.35);

transition:.3s;
}

.discord-btn:hover{
transform:translateY(-2px);

box-shadow:0 0 18px rgba(255,136,0,.6);
}

/* TESTI HERO */

.realm{
letter-spacing:8px;
font-size:25px;
margin-bottom:15px;
}

.hero h1{
font-size:90px;

background:linear-gradient(to bottom,#ffcb66,#ff8800);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:0 0 35px orange;

margin-bottom:25px;
}

.subtitle{
font-size:24px;
margin-bottom:40px;
opacity:.9;
}

/* BOTTONI */

.buttons{
display:flex;
gap:25px;
margin-top:40px;
}

.btn,
.buttons button{

padding:22px 50px;

border-radius:18px;

border:none;

font-family:'Orbitron',sans-serif;

font-weight:900;

cursor:pointer;

transition:.3s;
}

.primary,
.buttons button:first-child{

background:#ff9500;
color:white;

box-shadow:0 0 40px orange;
}

.secondary,
.buttons button:last-child{

background:transparent;

border:2px solid orange;

color:white;
}

.buttons button:hover{
transform:translateY(-3px);
}

/* CARDS */

.cards{
display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

padding:80px;

background:#050505;
}

.card{
background:#0b0b0b;

padding:30px;

border:1px solid rgba(255,136,0,.4);

border-radius:20px;

text-align:center;

transition:.4s;
}

.card:hover{
transform:translateY(-10px);

box-shadow:0 0 30px orange;
}

.card h3{
margin-bottom:15px;
color:#ff9500;
font-size:40px;
}

.card h2{
margin-bottom:15px;
font-size:18px;
}

.card p{
opacity:.8;
line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:1200px){

.cards{
grid-template-columns:repeat(3,1fr);
}

.hero h1{
font-size:60px;
}

}

@media(max-width:700px){

nav{
flex-direction:column;
gap:20px;
}

nav ul{
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.cards{
grid-template-columns:1fr;
padding:30px;
}

.hero h1{
font-size:40px;
}

.buttons{
flex-direction:column;
}

}

/* ================= MOBILE ================= */

@media screen and (max-width:768px){

nav{
flex-direction:column;
padding:15px;
gap:15px;
}

.logo-area{
flex-direction:column;
text-align:center;
gap:10px;
}

.logo-area img{
width:90px;
height:90px;
}

.logo-text h2{
font-size:20px;
}

.logo-text p{
font-size:14px;
}

nav ul{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
padding:0;
}

nav ul li{
font-size:14px;
}

.discord-btn{
padding:18px 50px;
font-size:18px;
width:fit-content;
}

.hero{
padding-top:350px;
min-height:auto;

background-size:cover;
background-position:center;
}

.hero-logo{
width:280px !important;
max-width:80%;
}

.realm{
font-size:18px;
letter-spacing:4px;
}

.hero h1{
font-size:42px;
line-height:1.1;
padding:0 15px;
}

.subtitle{
font-size:16px;
padding:0 20px;
line-height:1.5;
}

.cards{
grid-template-columns:1fr;
padding:30px;
gap:20px;
}

.card{
padding:25px;
}

}
