*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter, sans-serif;
background:#0b0b0b;
color:white;
line-height:1.6;
}



/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(0,0,0,0.8);
backdrop-filter:blur(6px);
z-index:1000;
}

.logo{
font-weight:600;
font-size:20px;
}

nav a{
margin-left:25px;
color:white;
text-decoration:none;
position:relative;
padding-bottom:4px;
}

/* navbar hover underline */

nav a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0;
height:2px;
background:white;
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:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("../images/hero.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:70px;
margin-bottom:15px;
}

.hero p{
opacity:.8;
}


/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:white;
color:black;
text-decoration:none;
font-weight:500;
transition:all .3s ease;
}

.btn:hover{
transform:translateY(-4px);
background:#e5e5e5;
box-shadow:0 10px 20px rgba(0,0,0,0.3);
}



/* SECTIONS */

section{
padding:120px 8%;
}



/* OUR STORY */

.story-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.story h2{
margin-bottom:20px;
}

.story img{
width:100%;
border-radius:8px;
transition:transform .5s ease;
}

.story img:hover{
transform:scale(1.05);
}



/* FEATURE CARDS */

.features{
background:#eeeeee;
color:black;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
}

.feature-card{
background:white;
padding:35px;
transition:.35s;
border-radius:4px;
}

.feature-card h3{
margin-bottom:10px;
}

.feature-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}



/* SERVICES */

.services{
text-align:center;
}

.services h2{
margin-bottom:30px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
margin-top:40px;
}

.service{
background:#111;
padding:20px;
border-radius:8px;
overflow:hidden;
transition:.3s;
}

.service img{
width:100%;
border-radius:8px;
transition:transform .6s ease;
margin-bottom:15px;
}

.service:hover img{
transform:scale(1.08);
}

.service:hover{
transform:translateY(-6px);
}



/* GALLERY */

.gallery{
text-align:center;
}

.gallery h2{
margin-bottom:30px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
cursor:pointer;
transition:.5s ease;
}

.gallery-grid img:hover{
transform:scale(1.06);
filter:brightness(1.1);
}



/* CONTACT */

.contact{
text-align:center;
background:#111;
}

.contact h2{
margin-bottom:15px;
}

.contact a{
color:white;
text-decoration:underline;
}



/* FOOTER */

footer{
text-align:center;
padding:40px;
background:#000;
opacity:.7;
}



/* RESPONSIVE */

@media(max-width:900px){

.story-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:48px;
}

.navbar{
flex-direction:column;
gap:10px;
}

nav a{
margin:0 10px;
}

}