*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:#090b10;
color:#fff;
font-family:tahoma,sans-serif;

}

.header{

position:fixed;
top:0;
left:0;
right:0;

height:75px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 50px;

background:rgba(0,0,0,.75);

backdrop-filter:blur(12px);

z-index:1000;

}

.logo{

font-size:28px;
font-weight:bold;
color:#d4af37;

}

nav{

display:flex;
gap:30px;

}

nav a{

color:white;
text-decoration:none;
transition:.3s;

}

nav a:hover{

color:#d4af37;

}

.hero{

height:100vh;

background:url("/lotr/static/img/background.jpg") center center/cover no-repeat;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

}

.overlay{

background:rgba(0,0,0,.65);

padding:70px;

border-radius:20px;

width:90%;
max-width:900px;

}

.overlay h1{

font-size:64px;
margin-bottom:20px;
color:#d4af37;

}

.overlay h2{

font-size:34px;
margin-bottom:25px;

}

.overlay p{

font-size:20px;
line-height:40px;
color:#ddd;

}

.button{

display:inline-block;

margin-top:40px;

padding:18px 45px;

background:#d4af37;

color:#111;

font-weight:bold;

border-radius:10px;

text-decoration:none;

transition:.3s;

}

.button:hover{

transform:scale(1.05);

}

.features{

max-width:1400px;

margin:auto;

padding:100px 40px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.card{

background:#161b24;

border:1px solid #2d3443;

border-radius:18px;

padding:40px;

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

border-color:#d4af37;

}

.card h3{

margin-bottom:20px;

font-size:26px;

color:#d4af37;

}

.card p{

line-height:34px;

color:#cfcfcf;

}

footer{

background:#10151d;

padding:35px;

text-align:center;

border-top:1px solid #2d3443;

color:#999;

}

@media(max-width:900px){

.features{

grid-template-columns:1fr;

}

.overlay h1{

font-size:42px;

}

.overlay h2{

font-size:26px;

}

.header{

padding:20px;

flex-direction:column;
height:auto;

}

nav{

margin-top:15px;
flex-wrap:wrap;
justify-content:center;

}

}