*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:system-ui, Arial;
}

body{
color:white;
background:#000;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.7);
backdrop-filter:blur(10px);
z-index:10;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.logo img{
height:30px;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:white;
}

/* VIDEO BACKGROUND */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
padding:20px;
}

.video-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
filter:blur(6px) brightness(0.6);
z-index:-2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
z-index:-1;
}

.content{
max-width:700px;
}

.content h1{
font-size:44px;
margin-bottom:10px;
}

.content p{
margin-bottom:20px;
opacity:.9;
}

.btn{
background:#ff3b30;
padding:12px 30px;
border-radius:25px;
color:white;
text-decoration:none;
}

/* PAGE SECTION */

.section{
padding-top:120px;
max-width:900px;
margin:auto;
text-align:center;
}

.section h1{
font-size:36px;
margin-bottom:20px;
}

.section p{
line-height:1.6;
opacity:.85;
}

/* FORMS */

.form{
display:flex;
flex-direction:column;
gap:12px;
margin-top:20px;
}

.form input,
.form textarea{
padding:10px;
border-radius:8px;
border:none;
}

.form button{
border:none;
cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.nav-links{
gap:12px;
font-size:14px;
}

.content h1{
font-size:30px;
}

}  