body {
font-family: 'Inter', sans-serif;
color: #333;
}

h1, h2, h3 {
font-family: 'Playfair Display', serif;
}

/* NAVBAR */

.custom-nav {
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
}

.logo {
font-weight: 600;
font-size: 22px;
}

.nav-link {
margin-left: 20px;
}

/* HERO */

.hero {
position: relative;
height: 100vh;
background-image: url("/images/Cover.png");
background-size: cover;
background-position: center 65%;
background-repeat: no-repeat;
}

/* .hero-img {
width: 100%;
height: 100%;
object-fit: cover;
margin: auto;
} */

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.25);
display: flex;
align-items: center;
}

.hero h1 {
color: white;
font-size: 60px;
max-width: 600px;
}

.hero-sub {
color: white;
font-size: 20px;
margin-top: 20px;
}

.hero-btn {
margin-top: 30px;
padding: 12px 30px;
background: #4a7c59;
color: white;
border-radius: 30px;
}

/* SECTIONS */

.section {
padding: 80px 0;
}

.section-title {
font-size: 40px;
margin-bottom: 20px;
}

.section-sub {
font-size: 18px;
color: #666;
max-width: 600px;
margin: auto;
}

.light {
background: #f8f8f8;
}

/* CARDS */

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;

  height: 100%;                 /* Makes all cards equal height */
  display: flex;
  flex-direction: column;       /* Helps align content nicely */
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: 200px;               /* Force same image height */
  object-fit: cover;           /* Prevents stretching */
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature-card h4 {
    margin-top: auto;
}

.feature-card p {
  margin-top: auto;   /* Pushes paragraph to bottom for consistency */
}

/* CTA */

.cta {
background: linear-gradient(
rgba(0,0,0,0.5),
rgba(0,0,0,0.5)
),
url("https://via.placeholder.com/1600x600");
background-size: cover;
color: white;
padding: 80px 0;
}

.cta-btn {
background: white;
color: black;
padding: 12px 30px;
border-radius: 30px;
}

/* FOOTER */

.footer {
background: #2f3e2f;
color: white;
padding: 40px 0;
}

/* MOBILE */

@media (max-width: 768px) {

.hero h1 {
font-size: 36px;
}

.section {
padding: 50px 0;
}

}

.custom-navbar {
      background-color: #121286;
    }

    .custom-navbar .nav-link,
    .custom-navbar .navbar-brand {
      color: white !important;
    }

    .custom-navbar .nav-link:hover {
      color: #cfcfff !important;
    }