/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.2px;
}

/* Navigation Bar */
nav {
  background: #fff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

  .menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #e60000;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links a {
    padding: 10px 20px;
    display: block;
    border-top: 1px solid #eee;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: relative;
  }
}

}

.logo img {
  height: 115px !important;
   height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #e60000;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #111;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
              url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .buttons a {
  display: inline-block;
  padding: 12px 25px;
  margin: 8px;
  background: linear-gradient(to right, #e60000, #ff4d4d);
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.hero .buttons a:hover {
  background: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section:nth-child(even) {
  background-color: #f9f9f9;
}

section:nth-child(odd) {
  background-color: #fff;
}

section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #e60000;
  border-bottom: 3px solid #e60000;
  display: inline-block;
  padding-bottom: 5px;
}

section ul {
  list-style-type: none;
  padding-left: 0;
}

section ul li {
  padding: 10px 0;
  font-size: 1.1rem;
}

section ul li i {
  color: #e60000;
  margin-right: 10px;
}

/* Links inside sections */
section a {
  color: #e60000;
  text-decoration: underline;
}

section a:hover {
  color: #111;
}

/* Contact Info */
#contact p a {
  text-decoration: none;
  color: #e60000;
  font-weight: bold;
}

#contact p a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #e60000;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.footer em {
  display: block;
  margin-top: 10px;
  font-style: italic;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none; /* for now, hide on mobile until we add mobile menu */
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 40px 15px;
  }
}


/* JOIN PAGE STYLES */

/* Hero Section */
.join-hero {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
              url('images/join-bg.png') no-repeat center center/cover;
  color: #fff;
  width: 100vw;
  text-align: center;
  padding: 80px 20px;
}

.join-hero h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.join-hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(to right, #e60000, #ff4d4d);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Why Join Section */
.why-join {
  padding: 60px 20px;
  background-color: #fffaf8;
  text-align: center;
}

.why-join h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #e60000;
  border-bottom: 3px solid #e60000;
  display: inline-block;
  padding-bottom: 5px;
}

.why-join ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.why-join li {
  font-size: 1.1rem;
  padding: 10px 0;
}

.why-join i {
  margin-right: 8px;
  color: #e60000;
}

/* How It Works Section */
.how-it-works {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #e60000;
  border-bottom: 3px solid #e60000;
  display: inline-block;
  padding-bottom: 5px;
}

.how-it-works ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.how-it-works li {
  margin-bottom: 15px;
}

/* Join Options Section */
.join-options {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.join-options h2 {
  font-size: 2rem;
  color: #e60000;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.join-options .join-buttons a {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  background-color: #1ebd5b;
}

.email-btn {
  background-color: #e60000;
  box-shadow: 0 4px 10px rgba(230, 0, 0, 0.4);
}

.email-btn:hover {
  background-color: #c00000;
}

/* Testimony Quote Section */
.quote-testimony {
  background-color: #fefefe;
  padding: 60px 20px;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
}

.quote-testimony blockquote {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
}

.quote-testimony cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: bold;
  color: #e60000;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .join-hero h1 {
    font-size: 2.2rem;
  }
  .how-it-works ol {
    text-align: left;
    padding: 0 10px;
  }
  .join-options .join-buttons a {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}


/* TESTIMONIES PAGE STYLES */

.testimonies-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
              url('images/testimonies-bg.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.testimonies-hero h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.testimonies-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Intro Paragraph */
.intro {
  text-align: center;
  padding: 40px 20px;
  background-color: #fffaf8;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Testimonies Grid */
/* Page Header */
.page-header {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
              url('images/testimonies-bg.png') no-repeat center center/cover;
    text-align: center;
    padding: 50px 20px;
  
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Testimonies Grid */
.testimony-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 2rem;
    }

    /* Testimony card */
    .testimony-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimony-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .testimony-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #222;
    }

    .testimony-excerpt {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }

    .read-more-btn {
      background: #0077cc;
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .read-more-btn:hover {
      background: #005fa3;
    }

    /* Modal styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .modal-content {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      max-width: 700px;
      width: 100%;
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .close {
      position: absolute;
      right: 1rem;
      top: 0.8rem;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Call to action */
    .cta {
      background: #f4f8ff;
      text-align: center;
      padding: 2rem;
      margin-top: 2rem;
      border-radius: 8px;
    }

    .cta a {
      color: #0077cc;
      font-weight: bold;
      text-decoration: none;
    }

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #3a0ca3;
    color: white;
}
.video-testimonies h2 {
  font-size: 2rem;
  color: #e60000;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.video-wrapper {
  margin-top: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Share Testimony CTA */
.share-testimony {
  background-color: #fefefe;
  padding: 60px 20px;
  text-align: center;
}

.share-testimony h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  color: #e60000;
  margin-bottom: 10px;
}

.share-testimony p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.share-testimony a {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.share-testimony .whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.share-testimony .whatsapp-btn:hover {
  background-color: #1ebd5b;
}

.share-testimony .email-btn {
  background-color: #e60000;
  box-shadow: 0 4px 10px rgba(230, 0, 0, 0.4);
}

.share-testimony .email-btn:hover {
  background-color: #c00000;
}

@media (max-width: 768px) {
  .testimonies-hero h1 {
    font-size: 2.2rem;
  }
  .testimonies-grid {
    grid-template-columns: 1fr;
  }
  .share-testimony a {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}


/* RESOURCES PAGE STYLES */

/* Hero Section */
.resources-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
              url('images/resources-bg.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.resources-hero h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.resources-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Resource Cards Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.resource-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.resource-card i {
  font-size: 2.5rem;
  color: #e60000;
  margin-bottom: 15px;
}

.resource-card h3 {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.resource-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.resource-card a {
  display: inline-block;
  margin-top: 10px;
  color: #e60000;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.resource-card a:hover {
  border-color: #e60000;
}

/* Resources Sections */
.resources-section {
  padding: 60px 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.resources-section h2 {
  font-size: 2rem;
  color: #e60000;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.book-list,
.resources-section ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.resources-section ul li a {
  color: #e60000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resources-section ul li a:hover {
  color: #a00000;
  text-decoration: underline;
}

/* Video Wrapper */
.video-wrapper {
  margin: 20px auto;
  max-width: 800px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .resources-hero h1 {
    font-size: 2.2rem;
  }
  .resources-hero p {
    font-size: 1rem;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACT PAGE STYLES */

/* Hero Section */
.contact-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)),
              url('images/contacts-bg.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f9f9f9;
  justify-content: center;
}

.contact-form {
  flex: 1 1 400px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
  font-family: 'Open Sans', sans-serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  background-color: #e60000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c20000;
}

.contact-details {
  flex: 1 1 300px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Open Sans', sans-serif;
}

.contact-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.contact-details i {
  margin-right: 10px;
  color: #e60000;
}

.contact-details a {
  color: #e60000;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: stretch;
  }
}

/* === ARTICLES PAGE === */
.hero.articles-hero {
  background: url('images/blog-hero.png') center/cover no-repeat;
  color: rgb(238, 20, 20);
  text-align: center;
  padding: 6rem 2rem;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article-preview {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}

.article-preview img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.article-info {
  flex: 1;
}

.article-date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.3rem;
}

.article-info h2 {
  font-size: 1.4rem;
  margin: 0.3rem 0;
}

.article-info h2 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.article-info h2 a:hover {
  color: #d93e3e;
}

.article-tags {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .article-preview {
    flex-direction: column;
  }

  .article-preview img {
    width: 100%;
    height: auto;
  }
}
/* End of articles styles */

/* === ARTICLE PAGE STYLES === */
.article-hero {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
  url('images/article-hero.png') center/cover no-repeat;
  padding: 5rem 2rem;
  color: rgb(248, 248, 248);
  text-align: center;
}


.article-hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
}

.article-hero .meta {
  font-size: 0.9rem;
  color: #f0f0f0;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.article-body {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: 'Merriweather', serif;
  color: #333;
  line-height: 1.75;
}

.article-body .intro {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background-color: #f4f4f4;
  border-left: 4px solid #d93e3e;
  font-style: italic;
  color: #444;
}

.article-body h2,
.article-body h3 {
  margin-top: 2rem;
  color: #222;
}

.article-body p {
  margin-bottom: 1.1rem;
}


.article-footer {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #fafafa;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  color: #555;
}

.article-nav {
  margin-top: 2rem;
  text-align: left;
}

.article-nav a {
  text-decoration: none;
  color: #d93e3e;
  font-weight: 600;
  transition: color 0.3s ease;
}

.article-nav a:hover {
  color: #a62828;
}


/* Responsive Design */
@media (max-width: 768px) {
  .article-hero .hero-text h1 {
    font-size: 1.8rem;
  }

  .article-body {
    padding: 0 1rem;
  }

  .article-body .intro {
    font-size: 1rem;
  }
}

/* === ARTICLE2 PAGE STYLES === */
.article2-hero {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
  url('images/article2-hero.png') center/cover no-repeat;
  padding: 5rem 2rem;
  color: rgb(248, 248, 248);
  text-align: center;
}


.article2-hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
}

.article2-hero .meta {
  font-size: 0.9rem;
  color: #f0f0f0;
  letter-spacing: 0.5px;
  font-weight: 300;
}

.article2-body {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: 'Merriweather', serif;
  color: #333;
  line-height: 1.75;
}

/* === END ARTICLE PAGE STYLES === */

