/* 🌐 Root Variables */

:root {
  --main-color: #f26a8d;        /* Main pink */
  --text-color: #000000;        /* Standard black text */
  --background-color: #fff;  /* White background */
  --gray-light: #f6f6f6;        /* Light gray (e.g. backgrounds, borders) */
  --gray-medium: #cccccc;       /* Medium gray */
  --gray-dark: #666666;         /* Darker gray for contrast */
  --black: #000000;             /* Full black (optional duplicate of text-color) */
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* 🔤 Font Styles */
body {
  margin: 0;
  font-family: 'ff-scala', serif, 'Roboto', serif,'Roboto', sans-serif;
  background-color: rgba(0, 0, 0, 0.05) /*var(--background-color)*/;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    color: #323232;
    font-size: 16px;
    line-height: 1.38;
    overflow-x: hidden;
    margin: 0;
    position: relative;
}

/* 🧠 Heading Font Classes */
.nav-bar,.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
  font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-weight: 400;
  line-height: 1.04;
  margin: 0 0 7px;
text-transform: uppercase;
}

.h5, .h6, h5, h6 {
  font-family: 'Orator Std Med', SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  text-transform: lowercase;
  margin: 0;
}




/* 🔷 Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--background-color);
  border-bottom: 2px solid #eee;

}

.nav-left, .nav-right {
  display: flex;
  gap: 25px;
  align-items: center;
}



.nav-bar a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 0 10px;
    display: block;
}

/* Directly target the img with class nav-logo */
.nav-logo {
  height: 100px; /* or whatever size you want */
  width: auto;
  display: block;
  margin-right: 10px; /* spacing to links */
}


.nav-right {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 10px; /* reduces space between elements */
    /* No margin-left:auto */
  /* Add a left margin to nav-right to separate from nav-left */
  margin-left: 30px;  /* controls distance from nav-left */
  /* Add right padding to keep space from edge */
  padding-right: 50px;
}

/* Facebook icon in nav */
.nav-right i {
  margin-right: 6px;
  color: #1877F2; /* Facebook Blue */
}

.language-toggle {
  margin-left: 10px;
  font-weight: bold;
  display: inline-flex; /* Ensures children are horizontal */
  align-items: center;
  gap: 4px; /* Optional: adds spacing between items */
}

.language-toggle a {
  text-decoration: none;
  color: inherit;
  padding: 0 4px;
  display: inline; /* Ensures inline placement */
}

/* -------------------------------------------------------------------------------------------------- ----------------------*/
/* 🏞️ Banner Container */
.banner {
  display: flex;
  width: 100%;
  height: 350px;
}

/* 🎨 Left Colored Bar */
.banner-left {
  width: 10%;
  background-color: var(--main-color);
}

/* 📝 Center Content Section */
.banner-center {
  width: 40%;
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}

.banner-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.banner-title {
  letter-spacing: 0.5px; /* or 0.5px */
}

.banner-paragraph {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 🧩 Join Button */
.banner-button {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;

    display: inline-flex;
  align-items: center;
  gap: 8px; /* space between text and arrow */
  text-decoration: none;
}

.banner-button:hover {
  background-color: #d65a79;
}

.arrow {
  color: white;
  font-size: 18px;
}


/* 🖼️ Right Banner with Image */
.banner-right {
  width: 50%;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.banner-right img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}

/* -------------------------------------------------------------------------------------------------- ----------------------*/

/* Section padding matches banner width */
.section {
  padding: 40px 40px;
  background-color: #fff;
  /* color: #000; */
  font-family: 'ff-scala','Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    color: #323232;
    font-size: 16px;
    line-height: 1.38;
}

.section:first-of-type {
  margin-top: 10px; /* same as your banner bottom padding */
}

/* Flexbox row structure */
.row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 6px;
  background-color: #f6f6f6;
  width: 100%;
}

/* Column layout */
.column {
  flex: 1;
}

/* Image */
.image-column {
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Image */
.image-column img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: cover;

}

.text-column h2 {
    margin-top: 40px; 
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.text-column p {
  font-size: 14px;
  line-height: 1.38;
  margin-bottom: 10px;
   text-align: justify; 
   margin-bottom: 1em;  
   letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

/* -------------------------------------------------------------------------------------------------- ----------------------*/

/* Flexbox row structure */
/* Reverse row for alternation */


.row2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  gap: 6px;
  background-color: #f6f6f6;
}

.row-reverse {
  flex-direction: row-reverse;
}

/* Column layout */
.left-column,
.right-column {
  flex: 1;
  padding: 40px;
}

.right-column {
  max-width: 100%;
}

.carousel {
  transition: height 0.3s ease;
  overflow: hidden;
  max-height: 500px; /* Set a safe maximum height */
  width: 100%;
  position: relative;
  max-width: 500px;

}

.carousel-image {
  position: absolute;
  width: 90%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  opacity: 0;
  border-radius: 8px;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.left-column p {
  font-size: 14px;
  line-height: 1.38;
  margin-bottom: 10px;
   text-align: justify; 
   margin-bottom: 1em;  
   letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

.left-column h2 {
  margin-top: 40px; 
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}


/* -------------------------------------------------------------------------------------------------- ----------------------*/


/* Column layout */
.text-column1,
.image-column1 {
  flex: 1;
}

/* Image */
.image-column1 {
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Image */
.image-column1 img {
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: cover;

}

.text-column1 h2 {
    margin-top: 40px; 
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.text-column1 p {
  font-size: 14px;
  line-height: 1.38;
  margin-bottom: 10px;
   text-align: justify; 
   margin-bottom: 1em;  
   letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

/* -------------------------------------------------------------------------------------------------- ----------------------*/


.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
    margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center; /* <== This centers the buttons */
}

.btn {
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
    display: inline-flex;
  align-items: center;
  gap: 8px; /* space between text and arrow */
  text-decoration: none;
}

.donate-btn {
  background-color: var(--black);
  color: white;
}

.donate-btn .arrow {
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s;
}

.donate-btn:hover .arrow {
  background-color: #d65a79;
}

.back-btn {
  background-color: var(--black);
  color: white;
}

.back-btn:hover {
  background-color: #d65a79;
}

.donate-btn:hover {
  background-color: #d65a79;
}



.side-by-side-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
}


/* -------------------------------------------------------------------------------------------------- ----------------------*/


.contact-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f7f7f7;
  font-family: 'ff-scala','Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  line-height: 1.38;

    font-size: 14px;
  line-height: 1.38;
  margin-bottom: 10px;

   margin-bottom: 1em;  
   letter-spacing: 0.02em;
  word-spacing: 0.1em;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  color: #323232;

}

.contact-section button {
  /* background-color: #e91e63; pink */
    background-color: var(--black);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
   font-size: 16px;
  font-weight: 600;
  /* transition: background 0.3s ease; */
    transition: background-color 0.3s ease;
      align-items: center;

        /* font-family: Bebas Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif; */

}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-section button:hover {
  /* background-color: #d81b60; */
  background-color: #d65a79;
}


/* -------------------------------------------------------------------------------------------------- ----------------------*/

@media (max-width: 768px) {
  /* 🔷 NAVIGATION */
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }

  .logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.nav-logo {
  height: 60px;
}
  .nav-logo {
    height: 60px;
    margin-bottom: 10px;
  }

  .nav-right {
    padding-right: 0;
    margin-left: 0;
  }

  .nav-bar a {
    font-size: 16px;
  }

  /* 🔷 BANNER SECTION */
  .banner {
    flex-direction: column;
    height: auto;
      width: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll */
  }

  .banner-left {
    height: 20px;
    width: 100%;
  }

  .banner-center {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box; /* Makes padding count within width */
  }

  .banner-title {
    font-size: 22px;
  }

  .banner-paragraph {
    font-size: 16px;
  }

  .banner-button {
    font-size: 16px;
    padding: 10px 24px;
  }

  .banner-right {
    width: 100%;
    padding: 20px 0;
  }

  .banner-right img {
    max-width: 100%;
    height: auto;
  }

  /* 🔷 SECTION LAYOUTS */
  .row1,
  .row-reverse {
    flex-direction: column;
    padding: 0 10px;
    text-align: center;
    gap: 30px;
  }

  .row2 {
    flex-direction: column-reverse; /* Stack vertically on phones */
    padding: 0 10px;
    text-align: center;
    gap: 30px;
  }

  .text-column1,
  .image-column1,
  .text-column,
  .image-column,
  .left-column,
  .right-column {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .text-column1 h2, 
  .text-column h2,
  .left-column h2 {
    font-size: 24px;
  }
  .text-column1 p,
  .text-column p,
  .left-column p {
    font-size: 14px;
  }

  .image-column1 img,
  .image-column img,
  .right-column img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .carousel {
    max-height: 60vh;
  }

  .contact-section input,
  .contact-section textarea {
    width: 100%;
  }

  .form-wrapper {
    padding: 0 10px;
  }
}



.lite-mode img {
  display: none !important;
}

.lite-mode .carousel, .lite-mode .banner-right {
  display: none;
}

.lite-mode .banner-center h1 {
  font-size: 1.2em;
}
