/* — Reset & Base — */
body {
  margin: 0;
  padding-top: 70px;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #333;
}

/* — Top Utility Bar — */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
  z-index: 1030;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
}
.topbar a {
  color: #ccc;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover {
  color: #fff;
}

/* — Main Navbar — */
.navbar {
  position: fixed;
  top: 32px;
  width: 100%;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 0.5rem 1rem;
  z-index: 1020;
}
.navbar-brand img {
  height: 50px;
}
.navbar-nav .nav-link {
  color: #333 !important;
  margin: 0 0.75rem;
  transition: color 0.2s, transform 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #006837 !important;
  transform: translateY(-2px);
  font-weight: 600;
}

/* — Hero Section — */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,104,55,0.85), rgba(216,27,96,0.85));
  z-index: 0;
}
.hero .hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 1rem;
  text-align: center;
}

/* — Feature Cards — */
.features {
  padding: 4rem 1rem;
}
.features .card {
  border: none;
  border-radius: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.features .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.features .card-body {
  padding: 2rem;
  text-align: center;
}
.features .card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.features .card p {
  margin-bottom: 1.5rem;
  color: #555;
}
.features .card .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
}

/* — Footer — */
footer {
  background: #222;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
}
footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #fff;
}
/* — About Us Banner — */
.about-hero {
  background: linear-gradient(135deg, #006837, #d81b60);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 3rem;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* — Floating Info Card — */
.info-card {
  max-width: 900px;
  margin: -6rem auto 4rem;        /* pulled up over the banner */
  background: #fff;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
}
.info-card .card-body {
  padding: 2rem 3rem;
}
.info-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.info-card th,
.info-card td {
  padding: 0.75rem 1rem;
  vertical-align: top;
}
.info-card th {
  background: #006837;
  color: #fff;
  font-weight: 600;
  width: 30%;
}
.info-card tr:nth-child(even) td {
  background: #f8f8f8;
}
.info-card tr:hover td {
  background: #e9f5ec;
}

/* — Meet the Team — */
.team-section {
  padding-bottom: 4rem;
}
.team-section h2 {
  margin-bottom: 2rem;
  font-weight: 600;
  color: #006837;
  text-align: center;
}
.team-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.team-card img {
  display: block;
  margin: 1.5rem auto 0.5rem;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.team-card .card-body {
  text-align: center;
  padding: 1rem;
}
.team-card .card-title {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.team-card .card-text {
  color: #555;
  font-size: 0.95rem;
}
/* — News Cards — */
.news-section .card {
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.news-section .card-body {
  padding: 1.5rem;
}
.news-section h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.news-section p {
  color: #555;
}

/* — YouTube Section — */
.youtube-section {
  padding: 4rem 1rem;
  background: #fff;
}
.youtube-section h2 {
  text-align: center;
  font-weight: 600;
  color: #006837;
  margin-bottom: 2rem;
}
.youtube-section .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.youtube-section iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* — Media Gallery Page — */
.gallery-section {
  padding: 4rem 1rem;
  background: #fff;
}
.gallery-section h2 {
  text-align: center;
  color: #006837;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.photo-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.photo-grid img:hover {
  transform: scale(1.05);
}

/* Video Grid (same look as YouTube section) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-grid iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* — Founder Life Story Section — */
.founder-story {
  background: #fff;
  padding: 4rem 1rem;
  margin: 2rem 0;
}
.founder-story h2 {
  color: #006837;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.founder-story .story-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fdfdfd;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.founder-story .story-content img {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.founder-story .story-content p {
  line-height: 1.6;
  color: #444;
}


/* Photo Grid tweaks */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

.photo-grid figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #006837;
  font-size: 0.95rem;
}
