/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
line-height:1.6;
}

/* HEADER */
header{
background:#2e7d32;
color:white;
padding:15px 0;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
width:90%;
margin:auto;
}

.logo{
font-size:24px;
font-weight:bold;
}

.nav-links{
display:flex;
list-style:none;
}

.nav-links li{
margin-left:20px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.nav-links a:hover{
color:#c8e6c9;
}

/* ================= HOME ================= */

.home{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;

/* ✅ HOME IMAGE */
background:url("image/plant.jpg") no-repeat center center/cover;

color:white;
}

.home-content{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
}

.home h1{
font-size:40px;
margin-bottom:20px;
}

.home p{
max-width:700px;
margin:auto;
}

.home button{
margin-top:20px;
padding:10px 20px;
border:none;
background:#4caf50;
color:white;
cursor:pointer;
border-radius:5px;
transition:0.3s;
}

.home button:hover{
background:#388e3c;
}

/* ================= ABOUT ================= */

.about{
padding:60px 20px;
background:white;
}

.about-container{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

/* ✅ ABOUT IMAGE (ALAG IMAGE) */
.about-image img{
width:320px;
border-radius:10px;
object-fit:cover;
}

.about-text{
max-width:500px;
}

.about h2{
margin-bottom:20px;
}

/* ================= INSTAGRAM ================= */

.insta{
display:inline-block;
margin-top:15px;
color:#E1306C;
font-weight:bold;
text-decoration:none;
}

.insta:hover{
text-decoration:underline;
}

/* ================= SERVICES ================= */

.services{
padding:60px 20px;
background:#f1f8e9;
text-align:center;
}

.service-box{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.card{
background:white;
padding:20px;
width:250px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* ================= CONTACT ================= */

.contact{
padding:60px 20px;
text-align:center;
}

form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:10px;
background:#2e7d32;
color:white;
border:none;
cursor:pointer;
border-radius:5px;
}

button:hover{
background:#1b5e20;
}

/* ================= FOOTER ================= */

footer{
background:#2e7d32;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

.credit{
margin-top:8px;
font-size:14px;
}