/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container utility class for consistent layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
.site-header {
    background-image: url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.75rem 0;
}

.logo {
    height: 50px;
}

.header-title h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #ffffff;
    font-display: inline;
}

.header-right {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
}

/* NAVIGATION *
#main-menu {
    /* no background here, background on ul 
}*/

#main-menu .menu-container {
    display: flex;
    justify-content: center;
    padding: 0.04rem 0 0.5rem 0;
}

#main-menu ul {
    display: flex;
    background-color: #474b52;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
    border-radius: 6px;
}

#main-menu li {
    margin: 0;
}

#main-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12;
    transition: background 0.3s ease;
}

#main-menu a:hover {
    background-color: #f3e956;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
}

/* MAIN CONTENT */
.site-content {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
}

/* FOOTER */
.site-footer {
    background-color: #474b52;
    color: white;
    text-align: center;
    padding: 0.3rem;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-title {
        display: none;
    }

    .hamburger {
        display: block;
    }

    #main-menu {
        display: none;
    }

    #main-menu.active {
        display: block;
    }

    #main-menu .menu-container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    #main-menu ul {
        flex-direction: column;
        gap: 0;
        border-radius: 0;
        background-color: #013b91;
    }

    #main-menu a {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 1rem;
        border-radius: 0;
    }

    #main-menu a:first-child {
        border-top: none;
    }
}



/* Content sections wrapper */
.sections-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem 0.5rem;
}

/* Section cards */
.section.card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.section.card h2 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #013b91;
}

.section.card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Button styles */
.btn-section {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #013b91;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-section:hover {
    background-color: #006600;
}

/* Section-specific subtle background stripe */
.section.education::before,
.section.empowerment::before,
.section.environment::before,
.section.employment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.section.education::before { background-color: #2563eb; }
.section.empowerment::before { background-color: #ec4899; }
.section.environment::before { background-color: #10b981; }
.section.employment::before { background-color: #f59e0b; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .section.card {
        padding: 1rem;
    }
    .section.card h2 {
        font-size: 1.5rem;
    }
    .btn-section {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}


/* === CTA Section === */
.cta-section {
    background: #474b52;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 0.5rem;
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-container p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
}

.cta-btn {
    background: #ffffff;
    color: #013b91;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #006600;
    color: #fff;
}

/* === Slider/Quote Highlights === */
.highlight-slider {
    overflow: hidden;
    padding: 2rem 0;
    background: #f3f9f3;
}

.highlight-track {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 1.5rem;
}

.highlight-card {
    flex: 0 0 auto;
    min-width: 250px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    font-style: italic;
    position: relative;
}

.highlight-card i {
    font-size: 2rem;
    color: #006600;
    margin-bottom: 0.5rem;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Optional pause on hover */
.highlight-slider:hover .highlight-track {
    animation-play-state: paused;
}

/* About page layout */
.about-wrapper {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Card styling */
.about-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.about-card h2,
.about-card h3 {
  margin-top: 0;
  color: #013b91;
}

.about-card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.about-card ul li {
  margin-bottom: 0.6rem;
  color: #333;
}

.btn-join {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #013b91;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn-join:hover {
  background: #006600;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-card {
    padding: 1rem;
  }
}


/* Videos Page Styling */
.videos-page {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  animation: fadeIn 0.6s ease-in-out;
}

.videos-header {
  text-align: center;
  margin-bottom: 2rem;
}

.videos-header h1 {
  font-size: 2.7rem;
  color: #013b91;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.videos-header p {
  font-size: 1.15rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

.video-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video card info */
.video-card h3 {
  margin: 1rem 1rem 0.5rem;
  font-size: 1.3rem;
  color: #013b91;
}

.video-card p {
  margin: 0 1rem 1rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA Section */
.video-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  background: linear-gradient(to right, #e8fbe8, #f0f9f0);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.video-cta h2 {
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  color: #006600;
  font-weight: 600;
}

.video-cta p {
  margin-bottom: 1.2rem;
  color: #444;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #006600;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #004d00;
  transform: translateY(-2px);
}

/* Subtle entrance animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .videos-header h1 {
    font-size: 2rem;
  }

  .video-card h3 {
    font-size: 1.15rem;
  }

  .video-cta h2 {
    font-size: 1.6rem;
  }

  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}



/* Floating Subscribe Button */
.floating-subscribe-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff0000;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 1000;
  transition: background 0.3s, transform 0.3s;
}

.floating-subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
}



/* Affiliate Page Styles */
.affiliate-hero {
  text-align: center;
  background: linear-gradient(to right, #e0f7f1, #ffffff);
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
  margin: 0.02rem auto;
}

.affiliate-hero h1 {
  font-size: 2.8rem;
  color: #013b91;
  margin-bottom: 0.5rem;
}

.affiliate-hero p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.affiliate-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 1rem;
}

.affiliate-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.affiliate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.affiliate-card h2 {
  margin-top: 0;
  color: #013b91;
  font-size: 1.4rem;
}

.affiliate-card ul {
  padding-left: 1.2rem;
}
.affiliate-card ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #333;
}

.btn-affiliate {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.6rem;
  background: #006600;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}
.btn-affiliate:hover {
  background: #004d00;
  transform: translateY(-2px);
}

.affiliate-tips {
  background: #f8f9fb;
  padding: 2rem 1rem;
  border-radius: 8px;
  margin: 3rem 1rem;
}
.affiliate-tips h2 {
  text-align: center;
  font-size: 2rem;
  color: #013b91;
  margin-bottom: 1.5rem;
}
.tips-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.tip-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.tip-card i {
  font-size: 2rem;
  color: #006600;
  margin-bottom: 0.5rem;
}
.tip-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: #013b91;
}
.tip-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

/* Membership Page */
.membership-page {
    max-width: 1100px;
    margin: -0.02rem auto;
    padding: 0.02rem;
}

.membership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.membership-header h1 {
    font-size: 2.5rem;
    color: #013b91;
}

.membership-header p {
    font-size: 1.2rem;
    color: #555;
}

.membership-benefits {
    text-align: center;
    margin-bottom: 4rem;
}

.membership-benefits h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #006600;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f5fdf5;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.benefit-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #013b91;
}

.membership-types h2 {
    text-align: center;
    color: #013b91;
    margin-bottom: 2rem;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.membership-card.highlight {
    border: 2px solid #006600;
    background: #f0fdf0;
}

.membership-card h3 {
    font-size: 1.5rem;
    color: #013b91;
}

.membership-card p {
    font-size: 1.2rem;
    color: #222;
    margin: 1rem 0;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    color: #444;
    font-size: 0.95rem;
}

.membership-card ul li {
    margin: 0.5rem 0;
}

.btn-join {
    background: #013b91;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-join:hover {
    background: #006600;
}

.cta-section {
    background: #013b91;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: #ffffff;
    color: #013b91;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary:hover {
    background: #f5f5f5;
}



/* General Staff Page Styles */
.staff-page {
  padding: 2rem 1rem;
}

/* Intro */
.intro-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.intro-section h1 {
  font-size: 2.5rem;
  color: #013b91;
  margin-bottom: 1rem;
}

.intro-section p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Department Grid */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.department-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.department-card:hover {
  transform: translateY(-5px);
}

.department-card i {
  font-size: 2.5rem;
  color: #006600;
  margin-bottom: 0.75rem;
}

.department-card h3 {
  margin-bottom: 0.5rem;
  color: #013b91;
}

.department-card p {
  color: #555;
  font-size: 1rem;
}

/* Communication Section */
.communication-box {
  background: #f5fdf5;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

.communication-box h2 {
  font-size: 2rem;
  color: #006600;
  margin-bottom: 0.5rem;
}

.communication-box p {
  color: #444;
  margin-bottom: 1rem;
}

.btn-email {
  background: #006600;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-email:hover {
  background: #004d00;
}

/* Font Awesome (if not already included) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');


.floating-staff-mail {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #013b91;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.floating-staff-mail:hover {
    background-color: #006600;
    transform: translateY(-2px);
}


/* Contact Page */
/* Contact Page Layout */
.contact-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0.1rem auto;
    padding: 0 1rem;
}

/* Left and Right Columns */
.contact-left,
.contact-right {
    width: 48%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */
.contact-left h2,
.contact-right h2 {
    margin-bottom: 1rem;
    color: #013b91;
    font-size: 1.75rem;
}

/* Contact Info Blocks */
.contact-info-block {
    margin-bottom: 1.2rem;
}

.contact-info-block a {
    color: #013b91;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

/* Map Styling */
.contact-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    margin-top: 1rem;
    border: none;
}

/* Contact Form */
.contact-right form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
}

/* Button Styling */
.btn-primary {
    background-color: #006600;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #004d00;
}

/* Success & Error Messages */
.alert-success {
    background-color: #e6f9e6;
    color: #006600;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.error {
    color: red;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-map iframe {
        height: 200px;
    }
}
