@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'DM Sans',sans-serif;
line-height:1.7;
color:#333;
background:#faf7f2;
font-size:16px;
}

h1,h2,h3,.section-title,.logo{
font-family:'Cormorant Garamond',serif;
}

h4{
    font-family:'DM Sans',sans-serif;
    color:#87786e;
    font-weight:200;
    font-size:16px;
    text-align: center;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:90px 0;
}

.light-bg{
background:#f7f5f0;
}

.section-title{
text-align:center;
font-size:2.4rem;
margin-bottom:20px;
color:#1f3a2e;
}

/* NAV */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(250,247,242,0.9);
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;

}

.logo{
font-weight:500;
font-size:1.2rem;
color:#1f3a2e;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#88786e;
font-weight:50;
font-size:0.8rem;
}

nav a:hover{
color:#1f6b52;
}

/* HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.hero-image{
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-content{
position:absolute;
top:55%;
left:45%;
margin-left: 30px;
padding-right: 10%;
transform:translate(-50%,-50%);
text-align:left;
color:white;
width:90%;
max-width:850px;
}

.hero-content h1{
font-size:4rem;
line-height:1.15;
margin-bottom:20px;
}

.hero-content h1 span{
   
    font-style: italic;
}

.hero-content p{

margin-bottom:35px;
}

.btn-primary{
display:inline-block;
padding:16px 32px;
background:#1f6b52;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

.btn-primary:hover{
background:#184f3d;
}

/* ABOUT */

.about-grid{
max-width:700px;
margin:auto;
display:grid;
grid-template-columns:1fr;
gap:30px;
place-items:center;
text-align:center;
}

.profile-image{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
display:block;
}

.about-text{
width:100%;
}

.about-text p{
margin-bottom:15px;
}

.about-video{
width:100%;
margin:0 auto;
position:relative;
padding-top:56.25%;
border-radius:20px;
overflow:hidden;
}

.about-video iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:0;
}

/* CARDS */

.card-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
align-items:start;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.08);
display:flex;
flex-direction:column;
height: 100%;
}

.card img{
width:100%;
height:220px;
object-fit:cover;   
}

.card h3{
    text-align: center;
padding:20px 20px 10px;
color:#1f3a2e;

}

.card h3 span{
display:block;
font-size:0.9rem;
margin-top:auto;
}

.card p{
    text-align: center;
padding:0 20px 20px;
color:#1f3a2e;
font-size:0.9rem;
margin-top:0;
}

/* SERVICES */

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}



.service-box{
padding:10px;
border:1px solid #efefef;
background:white;
border-radius:20px;
display:flex;
flex-direction:column;
text-align:center;
height:100%
}


.service-box h3{
margin:15px;

}

.service-box p{
font-size:0.9rem;
margin:15px;
color:#1f3a2e;
}

.service-box p span{
display:block;
margin:0.35rem 0;
position:relative;
padding-left:1.4rem;
text-align:left;
}

.service-box p span::before{
content:'•';
position:absolute;
left:0;
top:0;
color:#1f6b52;
}

.btn-service{
display:inline-block;
padding:10px;
background:white;
color:#1f6b52;
border:1px solid #1f6b52;
text-decoration:none;
border-radius:30px;
font-weight:100;
font-size:0.9rem;
margin-top:auto;

}

.btn-service:hover{
background:#184f3d;
color:white;
}

/* TIMELINE */



.step{
padding:30px;
text-align:center;
}

.step span{
display:inline-flex;
width:50px;
height:50px;
background:#d2e1dc;
color:white;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:bold;
margin-bottom:15px;
}

.step h3{
margin-bottom:10px;
}

/* FAQ */

details{
background:white;
padding:22px;
border-radius:15px;
margin-bottom:15px;
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

summary{
    font-family:'Cormorant Garamond',serif;
cursor:pointer;
font-weight:300;
font-size:1.2rem;
}

details p{
margin-top:15px;
font-size:0.9rem;
color:#87786e
}

/* FORM */

form{
max-width:600px;
margin: 40px auto;
  display: flex;
  flex-direction: column;
}

input,
textarea{
width:100%;
padding:16px;
border:1px solid #ddd;
border-radius:12px;
margin-bottom:15px;
font-size:1rem;
}

textarea{
height:160px;
resize:vertical;
}

button{
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#1f6b52;
color:white;
font-size:1rem;
cursor:pointer;
}

button:hover{
background:#184f3d;
}

.contact-info{
text-align:center;
margin-top:15px;
}

/* BLOG */

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.blog-item{
max-width:720px;
margin:30px auto 30px;
text-align:center;
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.blog-image{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.blog-heading{
padding:24px 24px 0;
}

.blog-title{
display:block;
font-size:1.45rem;
font-weight:700;
margin-bottom:18px;
}

.blog-readmore{
display:inline-block;
margin-bottom:16px;
padding:10px 24px;
color:#1f6b52;
border-radius:999px;
text-decoration:none;
font-weight:100;
cursor:pointer;
font-family:'DM Sans',sans-serif;
font-size:0.9rem;
}

#blog details{
background:#f7f5f0;
margin:0 24px 24px;
padding:20px;
border-radius:18px;
text-align:left;
}

#blog details summary{
outline:none;
list-style:none;
}

#blog details summary::-webkit-details-marker{
display:none;
}

#blog details p{
margin-top:15px;
}

/* INSTAGRAM */

.instagram-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.instagram-grid img{
width:100%;
height:350px;
object-fit:cover;
border-radius:18px;
transition:.3s;
}

.instagram-grid img:hover{
transform:scale(1.03);
}

/* FOOTER */

footer{
background:#1f3a2e;
color:white;
text-align:center;
padding:40px;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
background:#25d366;
color:white;
text-decoration:none;
padding:16px 22px;
border-radius:50px;
font-weight:700;
box-shadow:0 5px 15px rgba(0,0,0,.25);
z-index:999;
}

.hamburger{
display:none;
flex-direction:column;
background:none;
border:none;
cursor:pointer;
gap:6px;
z-index:1000;
padding:0;
margin-left:auto;
margin-right:0px;
position:relative;
}

.hamburger:hover{
background:none;
}

.hamburger span{
width:28px;
height:3px;
background:#1f3a2e;
border-radius:2px;
transition:0.3s;
}

/* MOBILE */

@media(max-width:900px){

.hero-content h1{
font-size:2.5rem;
}

.about-grid{
grid-template-columns:1fr;
}

.card-grid{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.timeline{
grid-template-columns:1fr;
}

.instagram-grid{
grid-template-columns:1fr;
}

.hamburger{
display:flex;
}

#menu{
position:fixed;
top:70px;
left:0;
width:100%;
background:rgba(250,247,242,0.98);
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease-out;
z-index:999;
}

#menu.active{
max-height:500px;
}

#menu ul{
flex-direction:column;
gap:0;
padding:20px 0;
}

#menu li{
padding:12px 20px;
}

#menu a{
display:block;
}

nav{
display:block;
}

.section{
padding:70px 0;
}
}