/** {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  background-color: #fff;
  padding-top: 60px;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  font-family: 'Bowlby One SC', sans-serif;
  color: #111;
  background-color: #fff;
}*/

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-header {
  background: #fff;
  padding: 0.5rem 0;  /* reduced top and bottom padding */
  border-bottom: 1px solid #eee;
}

/* styles.css */

/* Global body text style */
body {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* All headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 700;
  color: #002c28; /* Deep green tone for brand consistency */
  margin-bottom: 15px;
}

/* Navigation */
.nav a, .nav-right a {
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 600;
}

/* Hero Text Sections */
.hero-text,
.about-hero-text,
.resources-hero-text,
.events-hero-text,
.contact-hero-text {
  font-family: 'Trebuchet MS', sans-serif;
}

/* Paragraphs in hero sections and general content */
p, .subtext, .newsletter p, .footer p {
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 400;
}

/* Buttons */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}


/* ... your existing styles ... */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

body {
  padding-top: 70px; /* Prevent header from overlapping content */
}



.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
  min-height: 70px;
}
.nav-right {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-left: auto;
  margin-top: 0;
  padding-right: 60px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 14px;
}
  
/* Menu Hover color */

.nav-right > li > a,
.dropdown-menu li a {
  color: #1a143b; /* Default color */
  transition: color 0.3s ease;
}

.nav-right > li > a:hover,
.dropdown-menu li a:hover {
  color: #856d23; /* Hover color (change to your preferred color) */
}

/*.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}*/

/*.logo a {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 30px;
  color: #00332e;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 20px; /* adjust as needed */
  /*display: inline-block; /* needed for margin to apply properly */
/*}*/


.site-logo {
  height: 60px;      /* reduce logo height */
  width: auto;
  display: block;
  margin: 0;         /* remove any extra margin */
}

/*Footer Logo Mobile Responsiveness*/
@media (max-width: 768px) {
  .site-logo {
    height: 60px;      /* reduce logo height */
    width: auto;
    display: block;
    margin: 0 auto;    /* center horizontally */
  }

  /* Make sure its container centers the content */
  .site-logo-container {
    text-align: center;
  }
}


/* Dropdown styling */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
}

.tray-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Initially hide submenu */
.dropdown-menu {
  display: none;
  list-style: none;
  background-color: #fff;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #111;
  display: block;
}

/* Toggle class to show menu */
.dropdown.open .dropdown-menu {
  display: block;
}

/* Rotate tray icon when open */
.dropdown.open .tray-icon {
  transform: rotate(180deg);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
    padding-left: 20px;
  }
}

.hero {
  display: flex;
  align-items: center;
  background: #ebd9ce;
  padding: 40px 0;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-right: 100px;
}
.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.7; 
}
.hero-text h2 {
  font-size: 35px;
  margin-bottom: -10px;
  font-family: 'Trebuchet MS', sans-serif;
  margin-left: -17px;
}

/*Mobile Responsive Hero Text*/
@media (max-width: 768px) {
.hero-text h2 {
  font-size: 20px;
  margin-top: 30px;
}
}


.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}
.subtext {
  font-size: 16px;
  color: #333;
}
.btn {
  display: inline-block;
  background: #00332e;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 4px;
}


.about {
  background: #fff;
  padding: 80px 0;
}

.about-hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
}

.about-hero-text h2 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #00332e;
}

.about-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #444;
}

.about-hero-text .subtext {
  font-size: 16px;
  color: #555;
}

.about-hero-text .btn {
  background-color: #00332e;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}


.about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-top: 50px;
}
.about-text {
  max-width: 600px;
}
.about-text .subtitle {
  color: #00332e;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-text .btn.view-more {
  display: inline-block;
  padding: 10px 25px;
  background-color: #00332e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.about-text .btn.view-more:hover {
  background-color: #014d3a;
}
.about-text .btn.view-more:active {
  background-color: #002a1c;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #00332e;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1100;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-left, .nav-right {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
  }
  .nav-left.active, .nav-right.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 0px;
  margin-left: 80px;
}
.social-icons a {
  color: #00332e;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #856d23;
}
.social-icons a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
}

.blog-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #fff8f8;
    }

    .blog-section h3 {
      color: #00332e;
      font-size: 16px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .blog-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      margin-bottom: 40px;
    }

    .blog-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .blog-card {
      width: 300px;
      text-align: center;
    }

    .blog-card img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .blog-card .category {
      font-size: 14px;
      font-weight: bold;
      color: #888;
      margin-top: 15px;
      text-transform: uppercase;
    }

    .blog-card .title {
      font-size: 18px;
      margin-top: 8px;
      color: #00332e;
      font-weight: 500;
    }


    .newsletter {
  background-color: #fef6f6;
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 36px;
  color: #00332e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.newsletter .subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input[type="email"] {
  padding: 12px;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter .btn {
  background-color: #1e0f11;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter .btn:hover {
  background-color: #f0c073;
}

#successMessage {
  margin-top: 20px;
  color: #2ecc71;
  font-weight: 600;
}

.hidden {
  display: none;
}


/* ======= Footer Base Styles ======= */
.footer {
  background-color: #1a143b;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  text-align: left;
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-brand p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #FF5722;
}

/* ======= Social Icons Wrapper (Position Control) ======= */
.footer-social .social-icons-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: -2px;
  transform: none; /* Reset any transform */
}

/* ======= Social Icons ======= */
.footer-social .social-icons {
  display: flex;
  gap: 20px;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
}


.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-social .social-icons a:hover {
  color: #ff4444;
}


/* ======= Footer Bottom ======= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* ======= Responsive Footer (Mobile) ======= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-social .social-icons-wrapper {
    justify-content: center; /* center on mobile */
    transform: none; /* Ensure no shift */
  }
  
  /* Ensure icons inside are also centered */
  .footer-social .social-icons {
    justify-content: center;
    width: 100%;
  }
  
  .social-icons {
    text-align: center !important;  /* Center icons horizontally */
    justify-content: center !important; /* If using flexbox */
    float: none !important; /* Remove float alignment */
    margin: 0 auto; /* Ensure it’s centered */
}

.social-icons a {
    display: inline-block;
    margin: 0 5px; /* Space between icons */
    }
}


/* ========== About Page Styles ========== */

.about {
  background-color: #fff;
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}

.about-text {
  max-width: 600px;
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 36px;
  color: #00332e;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text .btn.view-more {
  display: inline-block;
  padding: 10px 25px;
  background-color: #00332e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.about-text .btn.view-more:hover {
  background-color: #014d3a;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-top: 20px;
}

.quote-section {
  background-color: #fef6f6;
  padding: 60px 20px;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-author {
  font-size: 16px;
  color: #00332e;
  font-weight: bold;
}

.about-detail {
  padding: 80px 20px;
}

.detail-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.detail-content.reverse {
  flex-direction: row-reverse;
}

.detail-image {
  flex: 1 1 45%;
}

.detail-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.detail-text {
  flex: 1 1 45%;
}

.detail-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00332e;
}

.detail-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Background color variants */
.bg-lightpink {
  background-color: #fef6f6;
}

.bg-lightgreen {
  background-color: #eafaf1;
}

.bg-lightbeige {
  background-color: #fdf4ec;
}

.bg-lightblue {
  background-color: #edf4fb;
}

/* Responsive layout */
@media (max-width: 768px) {
  .detail-content,
  .detail-content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .detail-image,
  .detail-text {
    flex: 1 1 100%;
  }

  .detail-image img {
    margin-bottom: 20px;
  }
}

/* ========== My Journey Section (Reuses About Styles) ========== */

#journey {
  background-color: #f8f8f8;
}

#journey .about-text h2 {
  color: #222;
}

#journey .about-text p {
  color: #444;
}

/* ========== Responsive ========== */

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }
}


/* ======= Resources Section ======= */
.resources-section {
  padding: 80px 20px;
  background-color: #f5f9f7;
}

.resources-hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: 70px;
  line-height: 1.7;
}

.resources-hero-text h2 {
  font-size: 60px; /* Adjust if needed */
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 10px;
  color: #1e0f11;
}

.resources-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.resources-hero-text .subtext {
  font-size: 16px;
  color: #777;
}

.resources-hero-text .btn {
  background-color: #1e0f11;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resource-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-icon {
  font-size: 36px;
  color: #00332e;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.resource-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.events-hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: 70;
  line-height: 1.7;
  font-family: 'Trebuchet MS', sans-serif;
}

.events-hero-text h2 {
  font-size: 50px; /* Adjust if needed */
  margin-bottom: 20px;
  font-weight: 70;
}

.events-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.events-hero-text .subtext {
  font-size: 16px;
  color: #333;
}

.events-hero-text .btn {
  display: inline-block;
  background: #00332e;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 4px;
}


.events-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.events-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
}
.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.event-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 300px;
  padding: 20px;
  text-align: center;
}
.event-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.event-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.event-card p {
  font-size: 16px;
  margin-bottom: 10px;
}
.event-date {
  font-weight: bold;
  color: #00332e;
}

/* Past Events Section */
.past-events-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.past-events-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.past-events-section .event-date {
  color: #999;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

/* Replay Button */
.replay-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #ff5722;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.replay-btn:hover {
  background-color: #e64a19;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}


.modal-content {
  position: relative;
  background: #fff;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-content iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: #e64a19;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: auto;
    padding: 15px;
  }

  .modal-content iframe {
    height: 240px;
  }

  .close-modal {
    font-size: 20px;
    top: 10px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 10px;
  }

  .modal-content iframe {
    height: 180px;
  }

  .close-modal {
    font-size: 18px;
  }
}

/* Contact Page Styles */

.contact-hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto;
}

.contact-hero-text h2 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #00332e;
}

.contact-hero-text p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #444;
}

.contact-hero-text .subtext {
  font-size: 16px;
  color: #555;
}

/* Contact Section */
/*.contact-hero-text {
  max-width: 620px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  color: #00332e;
  font-family: 'Montserrat', sans-serif;
}

.contact-hero-text h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: #00332e;
  font-weight: 700;
}

.contact-hero-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-hero-text .subtext {
  font-size: 16px;
  color: #666;
}*/

.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  background-color: #00332e;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #00544c;
}

/* Success Message */
#formSuccess {
  margin-top: 20px;
  color: green;
  font-weight: bold;
  text-align: center;
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-text h2 {
    font-size: 36px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }
}


/* Ensure this is added in your CSS file */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.contact-hero-bg {
  background: linear-gradient(to right, #e0f7f4, #f5f5f5);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg::before,
.contact-hero-bg::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(0, 51, 46, 0.05);
  z-index: 0;
}

.contact-hero-bg::before {
  top: -30px;
  left: -30px;
}

.contact-hero-bg::after {
  bottom: -40px;
  right: -40px;
}

.contact-hero-text {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: #00332e;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

.contact-hero-text h2 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 70;
  color: #00332e;
  font-family: 'Montserrat', sans-serif;
}

.contact-hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
  font-weight: 70;
}

.contact-hero-text .subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
  font-weight: 70;
}


/* === Hero Section Styles === */
.podcast-landing-hero {
  background: linear-gradient(to right, #ffffff, #007b99);
  padding: 60px 20px;
  text-align: center;
}

.podcast-landing-text h2 {
  font-size: 42px;
  color: #00332e;
  margin-bottom: 10px;
}

.podcast-landing-text .subtext {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 10px auto;
}

.logo-heading-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-logo {
  height: auto;
  max-width: 120px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 80px;
  }
}

/* === Two-Column Podcast Layout === */
.podcast-media-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.media-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.video-column,
.audio-column {
  flex: 1 1 48%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.video-column h3,
.audio-column h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #00332e;
  border-bottom: 2px solid #00332e;
  padding-bottom: 8px;
}

.video-item,
.audio-item {
  margin-bottom: 30px;
}

.video-item h4,
.audio-item h4 {
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}

.video-item p,
.audio-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.responsive-video iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: none;
}

.audio-item audio {
  width: 100%;
  margin-top: 10px;
}

/* Buttons & Links */
.comment-btn {
  display: inline-block;
  margin-top: 10px;
  color: #00332e;
  text-decoration: none;
  font-weight: 600;
}

.comment-btn:hover {
  text-decoration: underline;
}

.archive-button {
  margin-top: 20px;
  display: inline-block;
  background: #00332e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.archive-button:hover {
  background: #005645;
}

/* === Responsive Adjustments === */
@media screen and (max-width: 768px) {
  .media-grid {
    flex-direction: column;
  }

  .video-column,
  .audio-column {
    flex: 1 1 100%;
  }

  .responsive-video iframe {
    height: 200px;
  }
}

/* === Comments Section Styling === */
/*.comments-section {
  padding: 40px 20px;
  background: #fff;
}

.comments-section h3 {
  font-size: 24px;
  color: #00332e;
  margin-bottom: 20px;
}
*/

/* Audio player styling*/

.custom-audio-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.audio-overlay {
  background: rgba(0,0,0,0.6);
  padding: 30px 20px;
  text-align: center;
}

.waveform {
  height: 80px;
  margin-bottom: 15px;
}

.play-btn {
  background: #00cc99;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: #009f77;
}

.audio-meta {
  background: #00332e;
  padding: 16px;
  text-align: center;
}

.audio-meta h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.audio-meta p {
  font-size: 14px;
  color: #ccc;
}


/* === Blog Landing Page === */
.blog-landing-hero {
  background: linear-gradient(to right, #1a143b, #856d23);
  padding: 60px 20px;
  text-align: center;
}
.blog-landing-text h2 {
  font-size: 42px;
  color: #fff;
}
.blog-landing-text .subtext {
  font-size: 18px;
  color: #fff;
}

/* === Blog Grid Layout === */
.blog-grid-section {
  background: #fff;
  padding: 60px 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.blog-thumbnail {
  width: 100%;
  height: auto;
}
.blog-info {
  padding: 20px;
}
.blog-title {
  font-size: 20px;
  color: #1a143b;
  text-align: center;
}
.blog-excerpt {
  font-size: 15px;
  color: #555;
  margin: 10px 0;
}
.read-more-link {
  background: #1a143b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  display: block;
  text-decoration: none;
  width: 150px; /* Define a width for centering */
  margin: 20px auto 0; /* Centers horizontally with top margin */
  text-align: center;
}
.read-more-link:hover {
  background: #856d23;
  color: #fff;
}

/*Blog Hero Mobile Responsiveness*/
@media (max-width: 768px) {
.blog-landing-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
    }
}

/* === Pagination === */
.blog-pagination {
  margin-top: 40px;
  text-align: center;
}
.blog-pagination a {
  margin: 0 5px;
  padding: 8px 12px;
  background: #e6e6e6;
  color: #333;
  border-radius: 4px;
  text-decoration: none;
}
.blog-pagination .current {
  background: #00332e;
  color: #fff;
}

/* === Single Blog Page === */
.single-blog-hero {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.blog-hero-text h1 {
  font-size: 38px;
  color: #00332e;
}
.blog-hero-text .subtext {
  font-size: 16px;
  color: #777;
}
.blog-featured-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.single-blog-body {
  padding: 40px 20px;
  background-color: #fff;
}
.blog-full-content {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}


@media (max-width: 768px) {
.blog-hero-text h1 {
  font-size: 28px;
  color: #00332e;
}
  html,
  body {
    width: 100%;
    max-width: none;
    margin: 0; /* Shorthand for all margins */
    padding: 0; /* Shorthand for all paddings */
    overflow-x: hidden; /* Prevent potential horizontal scrollbar issues */
  }

  SECTION.single-blog-body,
  DIV.container.blog-content-layout,
  DIV.main-blog-content,
  .blog-post-content {
    width: 100%;
    max-width: none;
    /* Ensure no padding or margin on the right is forcing space */
    padding-right: 0 !important;
    margin-right: 0 !important;
    /* Remove or reset flex properties that prevent full width */
    flex: 0 0 100% !important; /* Make the main content take full width */
  }

  DIV.container.blog-content-layout {
    flex-direction: column; /* Stack flex items vertically on mobile */
    gap: 20px; /* Adjust gap for stacked layout, or set to 0 if no gap needed */
  }

  .blog-sidebar {
    flex: 0 0 100% !important; /* Make the sidebar take full width when stacked */
  }
  
   /* Ensure the image container centers its content on mobile and has no padding */
  .blog-feature-image {
    text-align: center; /* Center inline/inline-block children */
    padding-left: 0; /* Remove any left padding */
    padding-right: 0; /* Remove any right padding */
  }

  /* Target the image directly and make it block for margin: auto */
  .blog-feature-image img {
    display: block; /* Override the user agent's display: inline */
    margin: 0 auto; /* Center the block element */
    /* Ensure width and max-width are appropriate for mobile centering */
    width: 100%; /* Allow it to scale within the container */
    max-width: 680px; /* Respect original max-width */
    height: auto; /* Maintain aspect ratio */
  }

  /* Include the other potential image selector just in case */
   .blog-featured-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 680px;
    height: auto;
   }
}


/* ======= Blog Layout Enhancements ======= */

.blog-content-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.main-blog-content {
  flex: 0 0 65%;
}

.blog-feature-image img {
  width: 100%;
  height: auto;
  max-width: 680px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.blog-post-content {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.blog-sidebar {
  flex: 0 0 30%;
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.recent-posts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.recent-posts img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.tag-cloud a {
  background: #f1f1f1;
  padding: 5px 10px;
  margin: 5px;
  display: inline-block;
  font-size: 14px !important;
  border-radius: 4px;
}


/* Video Podcast Archive Styling*/

.archive-hero {
  padding: 60px 20px;
  background: #f0f0f0;
  text-align: center;
}

.archive-hero h2 {
  font-size: 32px;
  color: #00332e;
}

.archive-search-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.archive-search-form input[type="text"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.archive-search-form button {
  padding: 10px 16px;
  background-color: #00332e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.archive-search-form button:hover {
  background-color: #005645;
}

.video-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.video-item h4 {
  color: #222;
  margin-bottom: 10px;
}

.video-item p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.responsive-video iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  border: none;
}

.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 14px;
  background: #eee;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
}

.pagination .current,
.pagination .page-numbers:hover {
  background: #00332e;
  color: #fff;
}

/* Wavesurfer.min.js */
.custom-audio-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}

.audio-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.waveform {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
}

.play-btn {
  background: #00332e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: #005645;
}

.audio-meta {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  backdrop-filter: blur(3px);
}

.audio-meta h4 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #fff;
}

.audio-meta p {
  font-size: 14px;
  color: #eee;
}

@media screen and (max-width: 768px) {
  .waveform {
    height: 60px;
  }
  .audio-meta h4 {
    font-size: 18px;
  }
  
  .archive-hero h2 {
  font-size: 22px;
  margin-top: 40px;
}
}

/* Video Section Styling - Podcast.php */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.responsive-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-meta h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}

.comment-btn {
  display: inline-block;
  margin-top: 8px;
  color: #0073aa;
}
