*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
color:white;
background:black;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:black;
position:fixed;
width:100%;
top:0;
z-index:100;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:45px;
}

nav a{
color:white;
text-decoration:none;
margin-left:30px;
font-size:18px;
position:relative;
}

/* MENU EFFECT */

nav a::after{
content:"";
width:0;
height:2px;
background:#ff6a00;
position:absolute;
bottom:-5px;
left:0;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding-top:80px;

transition:background-image 1s ease-in-out;
}

.hero-content{
background:rgba(0,0,0,0.6);
padding:50px;
border-radius:10px;
max-width:700px;
}

.hero h2{
font-size:48px;
margin-bottom:20px;
color:#ff6a00;
}

.hero p{
font-size:18px;
line-height:1.6;
}

/* BUTTON */

.btn{
background:#ff6a00;
padding:15px 30px;
display:inline-block;
margin-top:20px;
border-radius:6px;
cursor:pointer;
text-decoration:none;
color:white;
font-weight:bold;
transition:0.2s;
}

.btn:hover{
background:#ff8c2a;
}

/* INFO */

.info{
padding:120px 20%;
text-align:center;
background:#111;
}

.info h2{
color:#ff6a00;
margin-bottom:20px;
}

/* FOOTER */

footer{
text-align:center;
padding:30px;
background:black;
}

/* ===================== */
/* TABLET RESPONSIVE */
/* ===================== */

@media (max-width:1024px){

header{
padding:20px 40px;
}

nav a{
margin-left:20px;
font-size:16px;
}

.hero h2{
font-size:40px;
}

.hero-content{
padding:40px;
}

.info{
padding:100px 10%;
}

}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */

@media (max-width:768px){

header{
flex-direction:column;
gap:10px;
padding:20px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

nav a{
margin:10px 15px;
font-size:16px;
}

.hero{
padding-top:140px;
}

.hero-content{
padding:30px;
}

.hero h2{
font-size:32px;
}

.hero p{
font-size:16px;
}

.info{
padding:80px 8%;
}

}

/* ===================== */
/* SMALL MOBILE */
/* ===================== */

@media (max-width:480px){

.hero h2{
font-size:26px;
}

.hero p{
font-size:15px;
}

.btn{
padding:12px 24px;
}

.logo img{
height:35px;
}

}