/* Theme colors inspired by Gardyn */
:root {
  --primary-green: #3d8a4f;
  --accent-yellow: #f2b632;
  --dark-green: #2f6040;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: var(--light-bg);
}

/* Navbar */
.navbar-brand img {
  height: 45px;
}
.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin-right: 10px;
}
.nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  background: url('../site_images/hero-bg.jpg') center/cover no-repeat;
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer-section {
  background-color: var(--dark-green);
}
.footer-section a:hover {
  color: var(--accent-yellow) !important;
}
