/** {
  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: 1px 0;
  border-bottom: 1px solid #eee;
}*/

.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: 70;
  color: #856d23; /* 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: #856d23;
  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: 120px; /* Adjust based on your preference */
  /*width: auto;
  display: inline-block;
}*/

.site-logo {
  height: 60px;      /* reduce logo height */
  width: auto;
  display: block;
  margin: 0;         /* remove any extra margin */
}

@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: linear-gradient(to right, #856d23 5%, #1a143b 95%);
  padding: 0 0 -10px 0;
  margin-top: 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;
  margin-top: 50px;
  margin-bottom: -7px; /* Overlaps downward */
  position: relative; /* Keeps it in flow but adjusts position */
}

.hero-text {
  max-width: 600px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
  font-family: 'Trebuchet MS', sans-serif;
}
.hero-text h2 {
  font-size: 85px;
  margin-bottom: -10px;
  font-family: 'Trebuchet MS', sans-serif;
  margin-left: -17px;
  color: #fff;
}

.hero-text h3 {
  font-size: 20px;
  margin-bottom: -10px;
  font-family: 'Trebuchet MS', sans-serif;
  margin-left: -17px;
  color: #fff;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}
.subtext {
  font-size: 16px;
  color: #333;
}
.btn {
  display: inline-block;
  background: #856d23;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 30px;
  border-radius: 4px;
  font-family: 'Trebuchet MS', sans-serif;
}

.btn:hover {
    background-color: #fff;
    color: #856d23;
    font-family: 'Trebuchet MS', sans-serif;
}

/* === Mobile adjustments === */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    order: 2; /* places image below the text */
    margin-right: 0;
    margin-top: 0;
  }

  .hero-text {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-text h2 {
    font-size: 40px; /* smaller heading for mobile */
    margin-left: 0;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px; /* Small gap from top */
    font-weight: bold;
    font-family: 'Trebuchet MS', sans-serif;
  }
  
  .hero-text {
    text-align: center; /* Center the text horizontally */
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures button is also centered */
    margin-top: 20px; /* Adjust vertical spacing */
  }

  .hero-text h3 {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 5px;
    margin-bottom: 15px; /* Space before button */
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: normal;
  }

  .hero-text .btn {
    margin-top: 10px;
  }
}



.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: #fff;
  font-weight: bold;
  line-height: 1.7;
  font-family: 'Trebuchet MS', sans-serif;
}

.about-hero-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.about-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.about-hero-text .subtext {
  font-size: 16px;
  color: #fff;
}

.about-hero-text .btn {
  background-color: #585e60;
  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: #585e60;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.about-text .btn.view-more:active {
  background-color: #585e60;
}

/* === Mobile adjustments About homepage === */
@media (max-width: 768px) {
    .about-text h2 {
        font-weight: bold;
    }
}


.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: 0;
  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: left;
    }

    .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: #1a143b;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.newsletter .subtitle {
  font-size: 16px;
  color: #1a143b;
  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: #1a143b;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter .btn:hover {
  background-color: #856d23;
  color: #1a143b;
}

#successMessage {
  margin-top: 20px;
  color: #2ecc71;
  font-weight: 600;
}

.hidden {
  display: none;
}


/* === Mobile adjustments Newsletter homepage === */
@media (max-width: 768px) {
    .newsletter h2 {
  font-size: 18px;
  font-weight: bold;
    }
}


/* ======= 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: 'Trebuchet MS', 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: #856d23;
}

/* ======= 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: #856d23;
}

/* ======= 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 */
  }
}

@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;
  }

  /* Center the wrapper */
  .footer-social .social-icons-wrapper {
    justify-content: center;
    transform: none;
  }

  /* 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 ========== */

/* Smooth Scrolling */

html {
  scroll-behavior: smooth;
}

.about {
  background: #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: #1a143b;
  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: #1a143b;
  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: #856d23;
  color: #1a143b;
}

.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;
    color: #1a143b;
  }

  .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: #fff;
}

.resources-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.resources-hero-text .subtext {
  font-size: 16px;
  color: #777;
}

.resources-hero-text .btn {
  background-color: #1a143b;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

.resource-card .btn:hover {
  background-color: #1a143b; /* Dark purple from your gradient */
  color: #fff; /* White text for contrast */
  transition: all 0.3s ease;
}

.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: bold;
  color: #fff;
}

.events-hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.events-hero-text .subtext {
  font-size: 16px;
  color: #fff;
}

.events-hero-text .btn {
  display: inline-block;
  background: #856d23;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 4px;
}

.events-hero-text .btn:hover {
    background: #fff;
    color: #856d23;
}

.events-section {
  padding: 80px 20px;
  background-color: #fef6f6;
  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;
  color: #1a143b;
}
.event-date {
  font-weight: bold;
  color: #1a143b;
}

.register-btn {
  display: inline-block;
  margin: 15px auto 0;
  padding: 10px 20px;
  background-color: #1a143b;;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  text-align: center;
}

.event-card {
  text-align: center; /* Ensure all content in the card, including the button, is centered */
}

.register-btn:hover {
  background-color: #856d23;
}


.events-section {
  margin-top: 60px;
}


.events-section {
  margin-bottom: 60px;
}

/* 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: #1a143b;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

/* Replay Button */
.replay-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #1a143b;
  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: #856d23;
  color: #fff;
}

/* 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;
  }
  
  .events-hero-text h2 {
  font-size: 25px; /* Adjust if needed */
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: bold;
  color: #fff;
}
}

@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: #1a143b;
  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: #856d23;
  color: #fff;
}

/* 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: 16px;
    font-weight: bold;
  }

  .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: 'Trebuchet MS', sans-serif;
  position: relative;
  z-index: 1;
}

.contact-hero-text h2 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 70;
  color: #1a143b;
  font-family: 'Trebuchet MS', sans-serif;
}

.contact-hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #1a143b;
  font-weight: 70;
  font-family: 'Trebuchet MS', sans-serif;
}

.contact-hero-text .subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #1a143b;
  font-weight: 70;
  font-family: 'Trebuchet MS', sans-serif;
}



/* Latest Podcast Post CSS */

#latest-podcast {
  background: linear-gradient(to right, #1a143b, #856d23);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#latest-podcast h3 {
  font-size: 1.2rem;
  color: #cceee8;
  margin-bottom: 5px;
}

#latest-podcast h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.podcast-feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: left;
}

.podcast-feature img {
  width: 300px;
  border-radius: 8px;
}

.podcast-info {
  max-width: 500px;
}

.podcast-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.podcast-info p {
  font-size: 1rem;
  color: #e0f7f4;
  margin-bottom: 15px;
}

.play-now-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #00332e;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.play-now-btn:hover {
  background: #cceee8;
  color: #002822;
}

@media (max-width: 768px) {
  .podcast-feature {
    flex-direction: column;
    text-align: center;
  }

  .podcast-feature img {
    width: 90%;
  }

  .podcast-info {
    max-width: 100%;
  }
}



/* Latest Blog Post From Wordpress to index.html (Homepage)*/


/*.blog-posts-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.blog-card {
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease-in-out;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card h3 {
  padding: 10px 15px 0;
  font-size: 1.1rem;
  color: #333;
}

.blog-card p {
  padding: 0 15px 15px;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
} */
