@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v19-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



/* === COLOR VARIABLES === */
:root {
  --primary-color: #FF7B00;
  --secondary-color: #ff3558;

  --text-light: #FFFFFF;
  --text-dark: #1F2937;
  --background-light: #FFFFFF;
  --background-dark: #111827;
}





/* === HIGH CONTRAST MODE === */
body.high-contrast {
  --primary-color: #000000;
  --secondary-color: #000000;
  --text-light: #FFFFFF;
  --text-dark: #000000;
  --background-light: #FFFFFF;
  --background-dark: #000000;
}

body.high-contrast {
  background-color: var(--background-light);
  color: var(--text-dark);
}




/* === BASE TYPOGRAPHY & LAYOUT === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

/* === BUTTONS === */
.primary-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 9999px;
}

.primary-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.secondary-button {
  background-color: var(--background-light);
  color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 9999px;
}

.secondary-button:hover {
  background-color: #F3F4F6;
  transform: translateY(-2px);
}

.outline-button {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: calc(0.75rem - 2px) calc(1.5rem - 2px);
  box-sizing: border-box;
  font-weight: bold;
  border-radius: 9999px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.outline-button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* === SECTION HEADERS === */
.section-title {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}



.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}



.numbers-colour {
  position: relative;
  display: inline-block;

  background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}



      /* Timeline styling for How to Volunteer section */
      .timeline-container {
        position: relative;
        padding-left: 50px;
      }

      .timeline-container::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
      }

      .timeline-item {
        position: relative;
        margin-bottom: 40px;
      }

      .timeline-dot {
        position: absolute;
        left: -50px;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }



/* === BLOG === */

      .section-title {
        color: var(--text-dark);
        position: relative;
        display: inline-block;
      }

      .search-button-primary {
        background-color: var(--primary-color);
        color: white; /* Ensure text color is white */
      }

      .search-button-primary:hover {
        background-color: var(--secondary-color); /* Optional: hover effect */
      }
            
      .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 2px;
      }


/* Pagination */
      .pagination-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 0 4px;
        border-radius: 50%;
        transition: all 0.3s ease;
      }
      
      .pagination-link:hover {
        background-color: #F3F4F6;
        transform: translateY(-2px);
      }
      
      .pagination-link.active {
        background-color: var(--primary-color);
        color: white;
      }
      
      .pagination-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px;
        height: 40px;
        border-radius: 20px;
        transition: all 0.3s ease;
      }
      
      .pagination-arrow:hover {
        background-color: #F3F4F6;
        transform: translateY(-2px);
      }



/* === COMPONENTS === */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.input-field {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.input-field:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.gradient {
  background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contrast-icon {
  width: 48px;
  height: 48px;
  background-color: rgb(from var(--primary-color) r g b / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}




.contrast-icon:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.contrast-icon svg {
  width: 24px;
  height: 24px;
}



.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgb(from var(--primary-color) r g b / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.wolontariat-icon {
  width: 64px;
  height: 64px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}



.sun-hidden {
  display: none !important;
}

      
      /* CTA styles */
      .floating-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: none;
      }

.contact-method:hover .contact-icon {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-5px);
}

/* Updated contact form styles */
      .contact-form input,
      .contact-form textarea,
      .contact-form select {
        transition: all 0.3s ease;
        border: 1px solid #E5E7EB;
        color: #1F2937; /* Dark text color for better visibility */
      }
      
      .contact-form input:focus,
      .contact-form textarea:focus,
      .contact-form select:focus {
        border-color: var(--primary-color);
        box-shadow: none; /* Remove the focus border/outline */
        outline: none;
      }
      
      .contact-info-card {
        border-left: 4px solid var(--primary-color);
      }
      

      /* Filtering buttons */
      .filter-button {
        background-color: rgb(from var(--secondary-color) r g b / 0.1);
        color: var(--secondary-color);
        border-radius: 9999px;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      
      .filter-button:hover {
        background-color: var(--secondary-color);
        color: white;

      }
      
      .filter-button.active {
        background-color: var(--secondary-color);
        color: white;
      }


         /* Filter label */
      .filter-label {
        background-color: rgb(from var(--secondary-color) r g b / 0.1);
        color: var(--secondary-color);
       
      }







      


 /* Privacy Policy specific styles */
      .page-header {
        position: relative;
        background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      }
      
      .wave-bottom {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
      }
      
      .policy-section h3 {
        color: var(--primary-color);
        margin-top: 2rem;
        margin-bottom: 1rem;
      }
      
      .policy-section p {
        margin-bottom: 1rem;
      }
      
      .policy-section ul {
        margin-bottom: 1rem;
        list-style-type: disc;
        padding-left: 2rem;
      }
      
      .policy-section ol {
        margin-bottom: 1rem;
        list-style-type: decimal;
        padding-left: 2rem;
      }
      
      .policy-section li {
        margin-bottom: 0.5rem;
      }
      
      .policy-navigation {
        position: sticky;
        top: 100px;
      }
      
      .policy-navigation a {
        display: block;
        padding: 0.5rem 1rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
      }
      
      .policy-navigation a:hover,
      .policy-navigation a.active {
        border-left-color: var(--primary-color);
        background-color: rgb(from var(--primary-color) r g b / 0.1);
        color: var(--primary-color);
      }
      
      .policy-updated {
        font-style: italic;
        color: #6B7280;
      }
      
      .policy-content {
        font-size: 1rem;
        line-height: 1.75;
      }

      .policy-link {
        color: var(--primary-color);
        transition: color 0.3s;
      }
      .policy-link:hover {
        color: var(--secondary-color);
      }      


      @media (max-width: 1023px) {
        .policy-navigation {
          position: relative;
          top: 0;
          margin-bottom: 2rem;
        }
        
        .policy-navigation a {
          padding: 0.5rem;
          border-left: none;
          border-bottom: 2px solid transparent;
        }
        
        .policy-navigation a:hover,
        .policy-navigation a.active {
          border-left-color: transparent;
          border-bottom-color: var(--primary-color);
        }
      }








/* === FORMS: PLACEHOLDERS === */


.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}


/* White placeholder text with 80% opacity */
::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1; /* For Firefox */
}


/* White placeholder text with 80% opacity */
::placeholder2 {
  color: rgba(0, 0, 0, 0.4); /* Darker placeholder text */
}



.contact-form ::placeholder {
    color: rgba(0, 0, 0, 0.4); /* Darker placeholder text */
  }
  

/* Support for Safari/Edge/Chrome */
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}


#newsletter-email::placeholder,
#newsletter-email::-webkit-input-placeholder,
#newsletter-email::-moz-placeholder,
#newsletter-email:-ms-input-placeholder,
#name::placeholder,
#email::placeholder,
#message::placeholder,
#name::-webkit-input-placeholder,
#email::-webkit-input-placeholder,
#message::-webkit-input-placeholder,
#name::-moz-placeholder,
#email::-moz-placeholder,
#message::-moz-placeholder,
#name:-ms-input-placeholder,
#email:-ms-input-placeholder,
#message:-ms-input-placeholder {
  color: white !important;
  opacity: 0.8 !important;
}

/* === FOOTER === */
.footer-section a:hover,
.footer-section a.hover\:text-indigo-500:hover,
.footer-section a.hover\:underline:hover {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

.footer-section a.hover\:text-indigo-500:hover {
  color: var(--secondary-color) !important;
}

.footer-org-name {
  font-size: 50%;
}

/* === HEADER === */
.organization-name-text {
  font-size: 50%;
}

/* === LANGUAGE MENU === */
#languageMenu {
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 50;
}

@media (max-width: 1023px) {
  #languageMenu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 0.375rem;
  }

  .language-option {
    padding: 0.75rem 1rem;
  }
}

/* === PARTNERS SECTION === */
.partner-item {
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.partner-name {
  font-weight: 600;
  font-size: 90%;
  transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
  color: var(--secondary-color) !important;
}


.pdf-link-style {
        color: var(--primary-color); /* Uses your defined primary color */
        text-decoration: underline;
        transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, text-decoration 0.3s ease-in-out; /* Smooth transition */
        padding: 2px 4px; /* A little padding for the highlight */
        border-radius: 4px; /* Slightly rounded corners for the highlight */
      }

.pdf-link-style:hover {
        color: var(--secondary-color); /* Changes text color to secondary on hover */
        background-color: rgba(var(--primary-color-rgb), 0.1); /* Subtle background highlight */
        text-decoration: none; /* Removes underline on hover */
      }




/* === MISC === */
.wave-divider {
  display: block;
  line-height: 0;
  font-size: 0;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/* === RESPONSIVE HERO BUTTON + FOOTER === */
@media (max-width: 767px) {
  .hero-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .footer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

          .floating-cta {

            position: fixed;
        bottom: 5px;

          right: 10px;
        }
        
        .floating-cta button {
          width: 100%;
        }

  .hero-button-container a + a {
    margin-left: 0.75rem; /* ~12px, adjust to taste */
  }
  .video-embed iframe {
    width: 100% !important;   /* override 560 */
    height: auto;             /* override 315 */
    aspect-ratio: 16 / 9;     /* keep the shape */
    display: block;
  }

  
   .search-container {
          flex-direction: column;
        }
        
        .search-container .search-form {
          width: 100%;
          margin-bottom: 1rem;
        }
        
        .search-container .category-filters {
          width: 100%;
          justify-content: center;
        }


}

nav#header ul li a:hover,
nav#header ul li button:hover,
nav#header ul li .language-option:hover {
  color: var(--secondary-color);
  text-decoration: none; /* no underline on hover */
  transition: color 0.3s ease;
}
/* Underline text on hover in high contrast mode */
body.high-contrast .primary-button:hover,
body.high-contrast .secondary-button:hover,
body.high-contrast .outline-button:hover,
body.high-contrast .btn:hover,
body.high-contrast .faq-question:hover,
body.high-contrast .inline-block:hover,
body.high-contrast .contrast-icon:hover,
body.high-contrast .footer-section a:hover,
body.high-contrast .card h2 a:hover,
body.high-contrast .filter-button:hover,

body.high-contrast .partner-item:hover .partner-name {
  text-decoration: underline !important;
}
body.high-contrast #organization-tagline,
body.high-contrast #hero-heading,
body.high-contrast #hero-description {
  color: white !important;
}


/* Underline nav links on hover only in high contrast mode */
body.high-contrast nav#header ul li a:hover,
body.high-contrast nav#header ul li button:hover,
body.high-contrast nav#header ul li .language-option:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}






