*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Manrope',sans-serif;
}

body{
background:url(bgproject.jpg.jpg);
color:white;
}

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
padding:20px 60px;
background:rgba(0,0,0,.5);
backdrop-filter:blur(10px);
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.overlay{
background:rgba(0,0,0,.55);
padding:40px;
}

.hero h1{
font-size:4rem;
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:15px 30px;
background:white;
color:black;
text-decoration:none;
margin-top:20px;
}

section{
padding:120px 10%;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background-image:url(bgproject.jpg.jpg);
padding:50px;
text-align:center;
border:1px solid #333;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
background:#222;
}

input{
padding:15px;
width:300px;
}

button{
padding:15px 30px;
cursor:pointer;
}

.hero{

height:100vh;
background:url(Harold1.jpg.jpg);
background-size:cover;
background-position:center;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,
rgba(0,0,0,.8),
rgba(0,0,0,.45));

}

.hero-content{
position:relative;
max-width:850px;
padding:40px;
z-index:2;

}

.subtitle{
letter-spacing:6px;
font-size:14px;
color:#ddd;

}

.hero h1{
font-size:90px;
margin:20px 0;
font-weight:700;
letter-spacing:3px;

}

.hero p{
line-height:1.8;
color:#ddd;
font-size:18px;

}

.hero-buttons{
margin-top:35px;
display:flex;
justify-content:center;
gap:20px;

}

.btn{

padding:16px 40px;
background:white;
color:black;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn:hover{
background:#d9d9d9;

}

.btn-outline{
padding:16px 40px;
border:1px solid white;
text-decoration:none;
color:white;
transition:.3s;

}

.btn-outline:hover{
background:white;
color:black;

}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.about img{
width:100%;
border-radius:8px;

}

.about span{
letter-spacing:4px;
color:#999;

}

.about h2{
font-size:50px;
margin:20px 0;

}

.section-title{
text-align:center;
font-size:55px;
margin-bottom:60px;

}

.card img{

width:100%;
height:280px;
object-fit:cover;
margin-bottom:20px;

}

textarea{

width:100%;
height:180px;
padding:15px;
background:#111;
color:white;
border:1px solid #444;
margin-top:20px;

}

.contact{

position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("Harold6.jpg.jpg");
background-size:cover;
background-position:center;

}

.contact-content{

width:65%;
max-width:900px;
text-align:center;

}

.contact h2{

font-size:60px;
margin-bottom:60px;

}

.contact input{

width:100%;
background:transparent;
border:none;
border-bottom:1px solid rgba(255,255,255,.8);
color:white;
font-size:18px;
padding:18px 10px;
outline:none;

}

.contact input::placeholder{

color:#ddd;

}

.contact button{

width:100%;
margin-top:18px;
padding:18px;
border:none;
background:#f0f0f0;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:.3s;

}

.contact button:hover{

background:#fff;

}

footer{

position:absolute;
bottom:0;
width:100%;
padding:25px;
background:#000;
text-align:center;
color:#bbb;

}

@media(max-width:768px){

header{
    padding:20px;
}
.hero h1{
    font-size:55px;
}
.about{
    grid-template-columns:1fr;
}
.contact-content{
    width:90%;
}
.contact h2{
    font-size:40px;
}
}

.card-link,
.card-link:visited{
    color: white;
    text-decoration: none;
}

.card-link h3,
.card-link p{
    color: white;
}

.card-link:hover h3,
.card-link:hover p{
    color: #ddd;
}

body{

 opacity:0;
transform:translateX(120px);

transition:
opacity .7s ease,
transform .7s ease;

}

body.loaded{

opacity:1;
transform:translateX(0);

}

body.page-exit{

opacity:0;
transform:translateX(-120px);

}

.about-hero{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
z-index:-1;
}

.about-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
width:620px;
max-width:90%;
text-align:center;
color:#fff;
z-index:2;
}

.about-content h1{
font-family:'Manrope',sans-serif;
font-size:64px;
font-weight:800;
letter-spacing:1px;
margin-bottom:28px;
}

.about-content p{
width:100%;
margin:0 auto 28px;
font-family:'Manrope',sans-serif;
font-size:17px;
font-weight:300;
line-height:1.7;
color:rgba(255,255,255,.82);
}

.socials{
display:flex;
justify-content:center;
align-items:center;

gap:22px;
margin-top:18px;
}

.socials a{
color:white;
font-size:18px;
transition:.3s ease;
}

.socials a:hover{
opacity:.7;
transform:translateY(-3px);
}

.hero-title{
    text-decoration: none;
    color: white;
}

.hero-title:link{
    color: white;
}

.hero-title:visited{
    color: white;
}

.hero-title:hover{
    color: white;
}

.hero-title:active{
    color: white;
}

.hero-title h1{
    color: white;
    font-size: 90px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 20px 0;
}