*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f8f8;
color:#333;
line-height:1.6;
}

/* HERO SECTION */

.hero{
background:linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("images/womenFormal.png");
background-size:cover;
background-position:center;
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero h2{
font-size:20px;
letter-spacing:2px;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
}

/* ABOUT */

.about{
padding:60px 20px;
text-align:center;
max-width:900px;
margin:auto;
font-size:18px;
}

/* MISSION */

.mission{
display:flex;
gap:30px;
justify-content:center;
padding:40px 20px;
flex-wrap:wrap;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
max-width:350px;
text-align:center;
}

.card h3{
margin-bottom:15px;
color:#c39a6b;
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
padding:40px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:8px;
}

/* SERVICES */

.services{
padding:60px 20px;
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service h3{
margin-bottom:15px;
color:#c39a6b;
}


/* CTA */

.cta{
text-align:center;
margin-top: 2rem;
padding:80px 20px;
background:#1e1e1e;
color:white;
}

.cta h2{
font-family:'Playfair Display', serif;
font-size:2rem;
margin-bottom:15px;
}

.cta p{
margin-bottom:25px;
}

.btn{
display:inline-block;
padding:12px 30px;
background:#c7a26a;
color:white;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.btn:hover{
background:#a8834e;
}

/* ========================= */
/* MOBILE / TABLET (750px) */
/* ========================= */

@media (max-width:750px){

.hero{
height:55vh;
padding:15px;
}

.hero h1{
font-size:32px;
}

.hero h2{
font-size:16px;
}

.hero p{
font-size:14px;
}

.about{
font-size:16px;
padding:40px 20px;
}

.mission{
flex-direction:column;
align-items:center;
}

.card{
max-width:90%;
}

.gallery{
grid-template-columns:1fr 1fr;
padding:20px;
}

.gallery img{
height:180px;
}

.services{
grid-template-columns:1fr;
}

.service{
padding:25px;
}

}