*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Roboto,sans-serif;
}

body{
background:#111;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#1d1d1d;
}

.logo{
font-size:28px;
font-weight:bold;
color:#d94825;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
transition:.3s;
}

nav a:hover{
color:#d94825;
}

.hero{

height:90vh;

background:url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1600&q=80");

background-size:cover;
background-position:center;

position:relative;

}

.overlay{

height:100%;
width:100%;

background:rgba(0,0,0,.6);

display:flex;
flex-direction:column;

justify-content:center;
align-items:center;

text-align:center;

}

.hero h1{
font-size:60px;
}

.hero p{
font-size:22px;
margin:20px;
}

button{

padding:15px 35px;
font-size:18px;

background:#d94825;

border:none;
color:white;

cursor:pointer;

border-radius:5px;

}

button:hover{
background:#f2653f;
}

section{
padding:80px;
}

h2{
text-align:center;
margin-bottom:40px;
color:#d94825;
}

.about p{

width:70%;
margin:auto;

text-align:center;
line-height:1.8;

}

.gallery{
background:#181818;
}

.carousel{

position:relative;

width:900px;
max-width:90%;

margin:auto;

}

.carousel img{

width:100%;
height:500px;

object-fit:cover;

border-radius:12px;

box-shadow:0 0 30px rgba(0,0,0,.5);

}

.prev,
.next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:50px;
height:50px;

border-radius:50%;

font-size:25px;

background:rgba(0,0,0,.6);

}

.prev{

left:-25px;

}

.next{

right:-25px;

}

.cards{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.card{

background:#1f1f1f;

padding:30px;

width:280px;

border-radius:10px;

text-align:center;

transition:.3s;

}

.card:hover{

background:#d94825;

transform:translateY(-8px);

}

footer{

background:black;

padding:50px;

text-align:center;

margin-top:80px;

}

footer h3{

font-size:28px;

color:#d94825;

margin-bottom:15px;

}

.contact{

margin:25px;

}

.contact p{

margin:10px;

}

.contact a{

color:white;
text-decoration:none;

}

.contact a:hover{

color:#d94825;

}

.copyright{

margin-top:30px;

color:#999;

}