/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f8f4;
  color: #1b3a2f;
  line-height: 1.6;
}

/* Header */
.header {
  background: linear-gradient(90deg, #0b5d3b, #08a54b);
  color: white;
  padding: 25px 20px;
  text-align: center;
}

.header h1 {
  margin-bottom: 5px;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #0b5d3b;
  padding: 12px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav a:hover {
  color: #a8f0c6;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Slideshow images */
.hero-slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* ACTIVE IMAGE */
.hero-slideshow img.active {
  opacity: 1;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Text on top */
.hero-text {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}
/* Sections */
.section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  margin-bottom: 15px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: #0b5d3b;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Button */
button {
  background: #08a54b;
  border: none;
  padding: 12px 25px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

button:hover {
  background: #067a36;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}

.header {
  background: linear-gradient(90deg, #0b5d3b, #08a54b);
  color: white;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo row */
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: bold;
}

/* Logo image */
.header .logo img {
  height: 100px; /* reduced from 80px (too big) */
  width: auto;
}

/* Tagline */
.header p {
  margin-top: 5px;
  font-size: 14px;
}

/* BLOG IMAGE STYLE */
.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;

  /* subtle shadow for premium feel */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* smooth animation */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect (makes site feel alive) */
.blog-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;

  background: #ffffff;
  border-radius: 20px;

  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .blog-image {
    height: 220px;
  }

  .section {
    margin: 40px 15px;
  }
}

.instagram-follow a {
  display: flex;
  align-items: center;
  gap: 10px;       /* space between icon and text */
  text-decoration: none;
  color: #E1306C;  /* Instagram pink */
  font-weight: bold;
  font-size: 16px;
}

.instagram-icon {
  width: 24px;
  height: 24px;
}