

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 20px 20px;
  transition: padding 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 10px 20px;
}

/* Container Styling */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px; /* Keep consistent small padding */
  width: 100%;
}


.navbar .logo {
  margin-right: 30px; /* Adjust logo spacing */
}

.navbar .logo img {
  width: 170px;
  transition: width 0.3s ease;
}

.navbar.scrolled .logo img {
  width: 120px;
}

/* General Menu Styling */
.navbar .menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar .menu ul li {
  margin: 0 15px;
  position: relative; /* Needed for dropdown positioning */
}

.navbar .menu ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
}

/* Underline effect on hover */
.navbar .menu ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: red;
  transition: width 0.3s;
}

.navbar .menu ul li a:hover::after,
.navbar .menu ul li a.active::after {
  width: 100%;
}

/* Dropdown Menu Styling */
.navbar .menu ul .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  display: none; /* Initially hidden */
  min-width: 400px;
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

.navbar .menu ul .dropdown-menu li {
  padding: 0;
}

.navbar .menu ul .dropdown-menu li a {
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  display: block;
}

.navbar .menu ul .dropdown-menu li a:hover {
  background-color: #fff;
}

/* Show dropdown on hover */
.navbar .menu ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger menu - hide on desktop */
.navbar .hamburger {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* Container spacing for mobile */
  .navbar .container {
    padding: 0 20px;
  }

  /* Hamburger menu display */
  .navbar .hamburger {
    display: block;
    margin-right: 10px;
  }

  /* Hide main menu on mobile */
  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
  }

  /* Show menu when hamburger is clicked */
  .navbar .menu.open {
    display: flex;
    margin-top: 80px;
    padding-left: 50px;
  }

  /* Stack menu items vertically on mobile */
  .navbar .menu ul {
    flex-direction: column;
  }

  .navbar .menu ul li {
    margin: 10px 0;
  }

  /* Smaller font size for mobile menu */
  .navbar .menu ul li a {
    font-size: 1em;
  }
  /* Dropdown menu styling adjustments */
  .navbar .menu ul .dropdown-menu {
    position: relative;
    top: 0;
    background-color: white;
    color: black;
  }

  .navbar .menu ul .dropdown-menu li a {
    color: black;
    padding-left: 20px;
  }
}

/* General Menu Styling */
.navbar .menu {
  flex-grow: 1; /* Let it take available space */
  margin-right: 40px; /* Push away from the right-side buttons */
}

.navbar .menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-start; /* Left-align items */
}



.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/static/images/Chitenge2.png") no-repeat center center/cover;
  margin-top: 70px;
}

/* Add the dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.7
  ); /* Adjust the alpha value (0.5) to control the darkness */
  z-index: 1; /* Ensures the overlay is on top of the background image */
}

/* Ensure the content inside the hero section is above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 5.5em;
  font-weight: bold;
  color: white;
  margin-top: 20%;
}

.hero .overlay .right {
  margin-top: -300px; /* Move the element up */
  text-align: right; /* Align the text to the right */
  color: white; /* Adjust color as needed */
  font-size: 2rem; /* Adjust font size as needed */
  position: absolute; /* Position it relative to the parent */
  top: 50%; /* Adjust vertical positioning */
  right: -20px; /* Adjust horizontal positioning */
  transform: translateY(-50%); /* Center it vertically */
  margin-right: 20px;
}

.overlay p {
  font-size: 2.5em;
  color: white;
  text-align: right;
}

.left {
  align-self: flex-start;
  padding-left: 15%;
  margin-top: 20%;
}

.right {
  align-self: flex-end;
  margin-bottom: 40%;
  padding-right: 20px;
}

.hero .overlay .right {
  margin-right: 60px;
  font-weight: 700;
}
/* Individual Word Styling and Animation */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) translateX(-50px);
  animation: slideIn 1s ease forwards;
}

/* Adjust animation delay to control order of appearance */
.word.indaba {
  animation-delay: 0.3s; /* Indaba appears first */
}

.word.declaration {
  animation-delay: 0.6s; /* Declaration appears second */
}

.word.african {
  animation-delay: 0.9s; /* African appears last */
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* Styling for the date and location text */
.right {
  font-size: 1.5rem;
  margin-top: 20px;
}

/* Individual Word Styling and Animation */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) translateX(-50px);
  animation: slideIn 2s ease forwards;
}

/* Adjust animation delay for words */
.word.indaba {
  animation-delay: 0.3s;
}

.word.declaration {
  animation-delay: 0.6s;
}

.word.african {
  animation-delay: 0.9s;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* Date and Location Animation */
.right .date,
.right .location {
  display: inline-block;
  opacity: 0;
  transform: translateY(100px) translateX(-50px);
  animation: slideInRight 1s ease forwards;
}

.right .date {
  animation-delay: 1.2s; /* Date appears first */
}

.right .location {
  animation-delay: 1.5s; /* Location appears after date */
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@media (max-width: 1524px) {
  .hero {
    position: relative;
    width: 100%;
    height: 150vh;
    background: url("/static/images/Chitenge2.png") no-repeat center
      center/cover;
    margin-top: 65px;
  }
  .overlay h1 {
    font-size: 4em; /* Decrease font size on smaller screens */
    margin-top: 30%;
  }

  .overlay p {
    font-size: 1.8vw;
    margin-top: 20px;
  }

  .left {
    padding-left: 10%;
  }

  .right {
    margin-right: 30px;
    top: 70%;
  }

  .hero .overlay .right {
    margin-top: -300px;
    text-align: right;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 70%;
    right: -20px;
    transform: translateY(-50%);
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("/static/images/Chitenge2.png") no-repeat center
      center/cover;
    margin-top: 65px;
  }
  .overlay h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    margin-top: 20%;
  }

  .overlay p {
    font-size: 1.2em;
    color: white;
    text-align: right;
  }

  .left {
    align-self: flex-start;
    padding-left: 15%;
    margin-top: 20%;
  }

  .right {
    align-self: flex-end;
    margin-bottom: 60%;
  }

  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(
      0,
      0,
      0,
      0.5
    ); /* Optional: Add a dark overlay for better text visibility */
  }

  .hero .overlay .right {
    margin-top: -300px; /* Move the element up */
    text-align: right; /* Align the text to the right */
    color: white; /* Adjust color as needed */
    font-size: 1.6rem; /* Adjust font size as needed */
    position: absolute; /* Position it relative to the parent */
    top: 70%; /* Adjust vertical positioning */
    right: -20px; /* Adjust horizontal positioning */
    transform: translateY(-50%); /* Center it vertically */
    margin-right: 20px;
  }
}
/* Hosted Section Styles */
.hosted-section {
  background-color: #b79020;
  height: 100px; /* Increase height */
  display: flex;
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
}

.hosted-section p {
  font-size: 2.5rem;
  color: white;
  text-align: center;
}

.hosted-section .state55 {
  font-weight: bold;
  color: white;
  font-size: 2.5rem;

  padding-right: 5px;
  animation: typing 5s steps(7, end); /* Typing effect */
}

/* Blinking cursor effect */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 6em;
    font-weight: bold;
    color: white;
    margin-top: 20%;
  }

  .overlay p {
    font-size: 2em;
    color: white;
    text-align: right;
  }

  .left {
    align-self: flex-start;
    padding-left: 15%;
    margin-top: 20%;
  }

  .right {
    align-self: flex-end;
    margin-bottom: 40%;
  }

  @media (max-width: 768px) {
    .overlay h1 {
      font-size: 2.5em;
      font-weight: bold;
      color: white;
      margin-top: 130%;
      margin-left: -50px;
    }

    .overlay p {
      font-size: 1.2em;
      color: white;
      text-align: right;
    }

    .left {
      align-self: flex-start;
      padding-left: 15%;
      margin-top: 20%;
    }

    .right {
      align-self: flex-end;
      margin-bottom: 40%;
    }

    .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background: rgba(
        0,
        0,
        0,
        0.5
      ); /* Optional: Add a dark overlay for better text visibility */
    }
  }

  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Apply animations */
  .line {
    display: block;
    opacity: 0; /* Start with hidden elements */
  }

  .date {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Delay for smooth entry */
  }

  .location {
    animation: slideIn 1s ease-out forwards;
    animation-delay: 1.5s; /* Delay to show this after the date */
  }
  /* Hosted Section Styles */
  .hosted-section {
    background-color: #b79020;
    height: 100px; /* Increase height */
    display: flex;
    align-items: center; /* Vertically center text */
    justify-content: center; /* Horizontally center text */
  }

  @media (max-width: 1285px) {
    .hero {
      height: 100vh; /* Adjust height for this width */
      background: url("/static/images/Chitenge2.png") no-repeat center
        center/cover;
      margin-top: 50px;
    }

    .overlay h1 {
      font-size: 3.5em; /* Adjust heading size */
      margin-top: 120%;
      padding-left: 50px;
    }

    .overlay p {
      font-size: 1.5em; /* Adjust paragraph size */
      text-align: right;
    }

    .hero .overlay .right {
      top: 70%; /* Reposition the right content */
      right: 0; /* Align closer to the right edge */
      transform: translateY(-50%);
      margin-right: 15px;
    }

    .left {
      padding-left: 5%;
      margin-top: 10%;
    }

    .right {
      margin-right: 20px;
      font-size: 1.2em; /* Adjust font size */
    }
  }
  /* Hosted Section Styles */
  .hosted-section {
    background-color: #b79020;
    height: 100px; /* Increase height */
    display: flex;
    align-items: center; /* Vertically center text */
    justify-content: center; /* Horizontally center text */
  }

  .hosted-section p {
    font-size: 1.5rem;
    color: white;
    text-align: center;
  }

  .hosted-section .state55 {
    font-weight: bold;
    color: white;
    font-size: 1.8rem;
  }
}

/* Animation Styling */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-100px); /* Initial off-screen position */
  animation: slideIn 1s forwards;
}

.word:nth-child(3) {
  animation-delay: 0.5s;
}
.word:nth-child(1) {
  animation-delay: 1s;
}
.word:nth-child(1) {
  animation-delay: 1.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0); /* Moves to the final position */
  }
}

  .hosted-section p {
    font-size: 1.5rem;
    color: white;
    text-align: center;
  }

  .hosted-section .state55 {
    font-weight: bold;
    color: white;
    font-size: 1.8rem;
  }
}

/* Animation Styling */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-100px); /* Initial off-screen position */
  animation: slideIn 1s forwards;
}

.word:nth-child(3) {
  animation-delay: 0.5s;
}
.word:nth-child(1) {
  animation-delay: 1s;
}
.word:nth-child(1) {
  animation-delay: 1.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0); /* Moves to the final position */
  }
}

.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: 60%;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: left;
  margin-top: revert-layer;
}

.underline {
  width: 50px;
  height: 3px;
  background-color: #16454a; /* Matching #16454a color */
  margin: 10px 0;
}

.about-content p {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.about-image {
  max-width: 35%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 20px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-image {
    max-width: 100%;
    margin-top: 20px;
    min-height: 200px; /* Ensures the image area is visible */
  }

  .about-image img {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1.8s ease;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }
}

.about-content h2,
.about-image img {
  opacity: 0;
  transform: translateX(100%); /* Heading slides from the right */
  transition: all 1.8s ease;
}

.about-image img {
  transform: translateX(-100%); /* Image slides from the left */
}

/* Active states when in view */
.about-content h2.in-view {
  opacity: 1;
  transform: translateX(0);
}

.about-image img.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Countdown Timer Styles */
/* Countdown Timer Styles */
.countdown-section {
  text-align: center;
  background-color: #f7f7f7;
  padding: 50px 20px; /* Adjust padding for smaller screens */
}

.countdown-header {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px
  font-weight:bold;
}

.countdown-description {
  color: #888;
  font-size: 1rem;
  margin-bottom: 20px;
}

.countdown-container {
  display: flex;
  flex-wrap: wrap; /* Enable wrapping for smaller screens */
  justify-content: center;
  gap: 20px; /* Add spacing between items */
}

.countdown-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px; /* Adjust margin for better responsiveness */
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-box.red {
  background: #ff4d4d;
}

.countdown-number {
  font-size: 3rem;
  color: #000;
}

.countdown-label {
  font-size: 1rem;
  color: black;
  font-weight: bold;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .countdown-box {
    width: 120px;
    height: 120px;
    padding: 15px;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-box {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .countdown-header {
    font-size: 1.2rem;
  }

  .countdown-description {
    font-size: 0.9rem;
  }

  .countdown-container {
    gap: 10px; /* Reduce gap for smaller screens */
  }
}

/*revised*/




.footer-container {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  text-align: left;
}

.footer-column {
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #d00000;
  margin-top: 5px;
}

.footer-column a {
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #e48713;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e48713;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 40px;
  }
  .footer-column {
    max-width: 100%;
  }
}

/* Footer Styling */
.footer-container {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  text-align: left;
}

.footer-column {
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #d00000;
  margin-top: 5px;
}

.footer-column a {
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #e48713;
}

/* Policy Links */
.policy-link {
  cursor: pointer;
}

/* 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.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  max-width: 700px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  color: #d00000;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #d00000;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}
/* Full-width background for the descriptive section */
.organization-partners-section {
  background-color: rgba(128, 128, 128, 0.1); /* Light grey */
  padding: 2em 0; /* Padding above and below the content */
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
}

/* Content styling within the section */
.partners-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em 20px;
  color: #666;
  font-size: 1.1em;
  line-height: 1.6;
}

.partners-title {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* Partner grid styling */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 1.5em;
  padding: 0 1em;
}

.partner-card {
  background: linear-gradient(135deg, #333, #666);
  color: #fff;
  padding: 2em;
  border-radius: 8px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr; /* One column for small screens */
  }
  .partners-title {
    font-size: 1.8em;
  }
  .partners-description {
    font-size: 1em;
  }
}

.voting-hero {
  background: url("/static/images/dechero.webp") no-repeat center center/cover; /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 500px; /* Increased height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px; /* Removed top padding to center the text */
  margin-top: 150px;
}

.voting-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .voting-hero h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
  }
}

/* Voting Section */
.vote-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.vote-section p {
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 50px;
}
.vote-section .highlighted-text {
  color: rgb(4, 110, 4);
  font-size: 1.8em;
}

/* Flex container for checkbox and vote count */
.vote-container {
  display: flex;
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Align items vertically */
  gap: 30px; /* Space between checkbox and vote count */
  margin-top: 20px;
  margin-bottom: 50px;
}

.vote-checkbox {
  font-size: 1.5rem;
  font-weight: bold;
}

.vote-count {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .vote-section {
    padding: 15px;
  }
}

/* Organization Partners Section */
.organization-partners {
  padding: 40px 20px;
  text-align: center;
  color: #333;
  margin-top: 90px;
}

.text-content {
  width: 100%; /* Full width of the page */
  padding: 20px 0; /* Vertical padding */
  text-align: center;
  margin-top: 80px;
}

.text-content h2,
.text-content p {
  max-width: 800px; /* Limit width for readability */
  margin: 0 auto; /* Center the content */
  padding: 0 20px; /* Horizontal padding to avoid edge touching */
}
/* Organization Partners Section */
.organization-partners {
  padding: 40px 20px;
  text-align: center;
  color: #333;
}

.text-content {
  margin-bottom: 30px;
}

.text-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.text-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}

/* Organization Partners Section */
.organization-partners {
  padding: 40px 20px;
  text-align: center;
  color: #333;
  margin-top: 90px;
  background-color: #f0f0f0;
}

.text-content {
  margin-bottom: 30px;
  max-width: 800px; /* Limits the paragraph width */
  margin-left: auto;
  margin-right: auto;
}

.text-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.text-content p {
  font-size: 1rem;
  color: #666;
  text-align: center;
  line-height: 1.6; /* Improves readability */
}

/* Partners Grid Container with Darkened Background */
.partners-grid-container {
  position: relative;
  background: url("/static/images/partners.jpg") no-repeat center center/cover;
  background-size: cover;
  padding: 40px 20px;
}

/* Dark overlay for background image */
.partners-grid-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust this value to darken more or less */
  z-index: 1;
}

.partners-grid {
  position: relative;
  z-index: 2; /* Ensure grid content is above the overlay */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Partner Box Styling */
.partner-box {
  border: 2px solid #fff;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Background for readability */
  color: #fff;
  transition: transform 0.3s ease;
}

.partner-box:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }

  .partner-box {
    padding: 15px;
    font-size: 0.9rem;
  }
}
.partner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Background for readability */
  color: #fff;
  text-decoration: none; /* Remove underline from links */
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.partner-box:hover {
  transform: scale(1.05);
}

/* Full-Width Image Strip */
.full-width-image-strip {
  width: 100%;
  height: 300px; /* Adjust the height as needed */
  background: url("/static/images/banner.webp") no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  position: relative;
}

.image-overlay {
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.5);  Dark overlay for contrast */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-strip-content {
  color: #fff;
  text-align: center;
}

.image-strip-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.image-strip-content p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Adjustments for mobile responsiveness */
@media (max-width: 768px) {
  .full-width-image-strip {
    height: 200px; /* Adjust height for smaller screens */
  }

  .image-strip-content h1 {
    font-size: 1.5rem;
  }

  .image-strip-content p {
    font-size: 0.9rem;
  }
}

/* Registration Hero Banner Styles */
.registration-hero-banner {
  width: 100%;
  height: 700px; /* Adjust the height as needed */
  background: url("/static/images/adibanner.png") no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
}

.registration-banner-overlay {
  width: 100%;
  height: 100%;
  /* background-color: rgba(
    0,
    0,
    0,
    0.6
  );  Dark overlay to improve text contrast */
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration-banner-content {
  color: #fff;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

.registration-banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.registration-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.registration-button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff4d4d; /* Button color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.registration-button:hover {
  background-color: #e63939; /* Darken button on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .registration-hero-banner {
    height: 300px;
  }

  .registration-banner-content h1 {
    font-size: 2rem;
  }

  .registration-banner-content p {
    font-size: 1rem;
  }

  .registration-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

.acc-hero {
  position: relative;
  height: 600px; /* Increased height */
  display: flex;
  align-items: center; /* Center the heading vertically */
  justify-content: center; /* Center the heading horizontally */
  background: url("/static/images/pexels.jpg") no-repeat center center/cover;
  background-size: cover;
  padding-top: 0; /* Remove top padding */
  margin-top: 100px;
}

/* Hero Heading */
.acc-hero h1 {
  font-size: 2.5em;
  color: #fff; /* Dark color to match the text */
  font-family: Poppins, sans-serif; /* Adjust font to match design */
  margin-bottom: 5px;
  position: relative;
  margin-top: 100px;
  text-align: center;
}

/* Underline style */
.acc-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #3a5e4e; /* Dark green color for the underline */
  margin: 8px auto 0;
}

.accommodation-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin: 0 auto 20px auto;
  max-width: 650px;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Section Styling */
.suggested-places {
  text-align: center;
  padding: 20px;
}

.icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: -100px;
  margin-top: 60px;
}

.icon {
  width: 50px; /* Adjust icon size */
  margin-bottom: -50px;
}

.suggested-places h2 {
  font-size: 1.8em;
  margin-bottom: 5px;
  color: #333;
  /* margin-top: -90px;
*/
}

.places-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.place {
  cursor: pointer;
  font-size: 1em;
  color: #333;
  text-align: center;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.place:hover {
  background-color: #e2e2e2;
}

.tours-travel {
  margin: 20px 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tours-travel p {
  font-size: 1em;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}

.section-heading {
  font-size: 1.5em; /* Adjust this size as needed */
  color: #007b5e; /* Optional: give it a different color */
  display: inline-block;
  margin-bottom: 8px; /* Adjust this margin as needed */
}

.tours-travel {
  margin: 20px 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tours-travel p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.tours-travel a {
  color: #007b5e;
  text-decoration: none;
}

.tours-travel a:hover {
  text-decoration: underline;
}

.section-heading {
  font-size: 2em;
  color: #007b5e;
  margin-bottom: 8px;
}

.centered {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.tours-travel {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.recommended-tours {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
}

.sightseeing-opportunities {
  font-size: 1em;
  color: #333;
  margin-top: 20px;
}

.places-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.places-list {
  flex: 1;
  list-style-type: none;
  padding: 0;
}

.places-image img {
  max-width: 100%;
  height: auto;
}
/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.popup-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 8px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  cursor: pointer;
}

.popup-images img {
  width: 30%;
  margin: 5px;
  border-radius: 4px;
}

.slide-right,
.slide-left {
  opacity: 0;
  transform: translateX(100%); /* Slide from the right */
  transition: transform 2s ease, opacity 2s ease;
}

.slide-left {
  transform: translateX(-100%); /* Slide from the left */
}

/* Animation when in view */
.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Initially hidden and positioned off-screen */
.slide-right {
  opacity: 0;
  transform: translateX(100%); /* Slide from the right */
  transition: transform 2s ease, opacity 2s ease;
}

/* Animation when in view */
.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Initial state for slide-in elements */
.slide-in-right {
  opacity: 0;
  transform: translateX(100px); /* Adjust for sliding in from the right */
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* When elements are in view */
.slide-in-active {
  opacity: 1;
  transform: translateX(0); /* Final position */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .places-list {
    grid-template-columns: 1fr;
  }

  .suggested-places h2 {
    font-size: 1.5em;
  }

  .popup-content {
    width: 90%;
  }

  .place {
    font-size: 0.9em;
    padding: 8px;
  }
}

.places-to-visit {
  padding: 40px;
  background-color: #f0f0f0;
  text-align: center;
}

.header-icon img.icon {
  width: 40px;
  margin-bottom: 10px;
}

.places-content {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  padding-right: 50px; /* Shift content to the left */
  margin-top: 40px;
}

.places-to-visit h2 {
  margin-top: 100px;
  margin-bottom: 80px;
}
.places-to-visit h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #3a5e4e; /* Dark green color for the underline */
  margin: 8px auto 0;
  text-align: left;
  margin-top: 30px;
}
.places-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto; /* Center the list */
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.places-list li {
  cursor: pointer;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #333;
}

.places-list li:hover {
  color: #007b5e;
}

.places-image {
  width: 100%;
  max-width: 600px;
  margin: 20px auto; /* Center the image container */
  padding: 0 10%; /* Add space on both sides */
  box-sizing: border-box;
  text-align: center;
}

.places-image img.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: -400px;
  margin-left: 400px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
}

.modal-content img {
  width: 100px;
  height: auto;
  margin: 5px;
}

.modal-content .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
  .places-content {
    flex-direction: column;
  }

  .places-image {
    padding: 0 5%; /* Adjust spacing on smaller screens */
  }

  .places-image img.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    margin-left: -70px;
  }
}
/* General Styles */
.kwanzaa-celebration-section {
  background-color: #f9f9f9; /* Adjust background color as needed */
  padding: 50px 20px;
}

.kwanzaa-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.kwanzaa-text {
  text-align: left;
}

.kwanzaa-text h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: left; /* Aligns the heading text to the left */
  margin-top: -50px;
}

.green-divider {
  width: 50px;
  height: 4px;
  background-color: #006400; /* Dark green divider color */
  margin-bottom: 20px;
}

.kwanzaa-text p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 700px; /* Limits the width of the paragraph */
  margin: 0 auto; /* Centers the paragraph within the container */
}

.kwanzaa-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -150px; /* Reduce padding to move the image closer */
  max-width: 100px; /* Adjust this value to reduce the image size */
  height: 400px;
}
.kwanzaa-celebration-section h2,
.kwanzaa-image img {
  opacity: 0;
  transform: translateX(100%); /* Start off-screen */
  transition: all 0.8s ease;
}

.kwanzaa-image img {
  transform: translateX(-100%); /* Image slides from the left */
}

/* Active state when in view */
.kwanzaa-celebration-section h2.in-view,
.kwanzaa-image img.in-view {
  opacity: 1;
  transform: translateX(0); /* Move to original position */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .kwanzaa-layout {
    flex-direction: column;
    text-align: center;
  }

  .kwanzaa-text {
    text-align: left; /* Keeps text content aligned to the left even on smaller screens */
  }

  .kwanzaa-text h2 {
    font-size: 2rem;
  }

  .kwanzaa-image img {
    max-width: 300px;
    margin-top: 20px;

    height: 200px;
  }
}

@media (max-width: 480px) {
  .kwanzaa-text h2 {
    font-size: 1.8rem;
  }

  .kwanzaa-text p {
    font-size: 0.9rem;
  }
}

.kwanzaa-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 40px; /* Optional spacing */
}

.kwanzaa-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Documents Page Styling */
.documents-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 300px;
}

.documents-container h1 {
  color: #16454a; /* Dark teal */
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.document-item {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 120px;
}

.document-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.document-item h3 {
  color: #e48713; /* Orange */
  font-size: 1.5em;
  margin: 0;
  padding: 0;
}

.document-item p {
  color: #666;
  font-size: 1em;
  margin: 10px 0 20px;
}

.download-button {
  background-color: #bd1818; /* Dark red */
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #a61616;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .documents-container {
    padding: 20px;
  }

  .documents-container h1 {
    font-size: 2em;
  }

  .document-item h3 {
    font-size: 1.2em;
  }

  .document-item p {
    font-size: 0.9em;
  }

  .download-button {
    padding: 8px 16px;
  }
}



.clarion-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-top:200px;
}

.clarion-heading {
  font-size: 2.5em;
  color: #16454a;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 2px;
}

.clarion-content {
  width: 90%;
  margin-bottom: 40px;
}

.clarion-content p {
  color: #333;
  line-height: 1.6;

  margin-bottom: 20px;
}

.clarion-image {
  width: 80%;
  margin-top: 20px;
}

.clarion-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .clarion-section {
    padding: 30px 15px;
  }
  
  .clarion-heading {
  font-size: 1.5em;
  color: #16454a;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 150px;
}

  .clarion-heading {
    font-size: 1.5em;
  }

  .clarion-content {
    width: 100%;
  }

  .clarion-image {
    width: 90%;
  }
}
.thematic-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.thematic-layout {
    display: flex;
    align-items: center; /* Align text and image properly */
    justify-content: space-between; /* Ensure proper spacing */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.thematic-text {
    flex: 1; /* Ensures text takes available space */
    max-width: 60%;
}

.thematic-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.thematic-divider {
    width: 50px;
    height: 3px;
    background-color: #333;
    margin-bottom: 20px;
}

.thematic-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thematic-list {
    list-style-type: decimal;
    padding-left: 20px;
    line-height: 1.6;
    text-align: left;
}

.thematic-list li {
    margin-bottom: 8px;
}

/* IMAGE CONTAINER */
.thematic-image {
    flex: 1; /* Ensures the image takes available space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.thematic-image img {
    width: 100%;
    max-width: 400px; /* Set max width */
    object-fit: cover;
    margin-top: 0; /* Remove excess margin */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .thematic-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thematic-text {
        max-width: 100%;
    }

    .thematic-divider {
        margin: 0 auto 20px auto;
    }

    .thematic-list {
        padding-left: 10px;
    }

    .thematic-image img {
        width: 80%;
        max-width: 300px;
        margin-top: 20px;
    }
}


#expected-outcome {
  max-width: 900px;
  padding: 20px;
  
  line-height: 1.6;
}

#expected-outcome-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1b4d3e;
  margin-bottom: 20px;
  text-align: center;
  margin-top:170px;
}

#expected-outcome-content {
  
  color: #333333;
}

.expected-outcome-image {
    text-align: center;
    margin-bottom: 20px; /* Adds spacing below the image */
}

.expected-outcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds slight shadow */
    margin-top: 200px;
    margin-bottom: -120px;
}

.donation-page {
  background: url("/static/images/dona.webp") no-repeat center center/cover; /* Replace with your image path */
  background-size: cover; /* Make the image cover the container */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  background-attachment: fixed; /* Keep the background static on scroll */
  min-height: 100vh; /* Ensure the container covers the viewport height */
  display: flex; /* Use flexbox to center content */
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
  padding: 20px; /* Add padding around the content */
}

.donate-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 200px;
  margin-bottom: 500px;
}

.donate-form,
.donate-alternatives {
  flex: 1;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donate-form {
  max-width: 400px;
}

.frequency-toggle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.frequency-toggle button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
}

.frequency-toggle button.active {
  background-color: #16454a;
  color: white;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.amount-buttons button {
  flex: 1 1 calc(33.333% - 10px);
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  cursor: pointer;
}

.amount-buttons button:hover {
  background-color: #16454a;
  color: white;
}

.custom-amount {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.custom-amount input,
.custom-amount select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #16454a;
  color: white;
  border: none;
  cursor: pointer;
  margin-top:20px;
}

button[type="submit"]:hover {
  background-color: #e48713;
}

.donate-alternatives h2 {
  color: #16454a;
  margin-bottom: 20px;
}

.donation-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.method {
  flex: 1 1 calc(50% - 10px);
  background-color: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.method h3 {
  color: #bd1818;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .donate-container {
    flex-direction: column;
    gap: 20px;
  }

  .donate-form,
  .donate-alternatives {
    flex: 1 1 100%;
  }
}
.method ul {
  margin-left: 20px; /* Moves the entire list inwards */
  padding-left: 20px; /* Adds indentation for the bullets */
}

.method li {
  margin-bottom: 5px; /* Adds some spacing between list items */
}


.speakers-section {
  text-align: center;
  padding: 70px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.speakers-section h2 {
  font-size: 2rem;
  margin-bottom: 45px;
  margin-top: -20px;
}

.carousel {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 250px;
}

.carousel-set {
  display: flex;
  gap: 80px;
  position: absolute;
  top: 0;
  justify-content: center;
  align-items: center;
  transform: translateX(100%); /* Start off the screen on the right */
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  opacity: 0; /* Start with opacity 0 for smooth transition */
}

.carousel-set.active {
  transform: translateX(0); /* Slide into view */
  opacity: 1; /* Fade in */
}

.carousel-set.exit {
  transform: translateX(-100%); /* Slide out to the left */
  opacity: 0; /* Fade out */
}

/* Focused Speaker Styling */
.speaker {
  opacity: 0.3; /* Default opacity for non-focused speakers */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.speaker.focused {
  opacity: 1; /* Highlight focused speaker */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .countdown-box {
    width: 120px;
    height: 120px;
    padding: 15px;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-box {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .countdown-header {
    font-size: 1.2rem;
  }

  .countdown-description {
    font-size: 0.9rem;
  }

  .countdown-container {
    gap: 10px; /* Reduce gap for smaller screens */
  }
}

.speaker {
  text-align: center;
}

.headshot {
  width: 100px; /* Adjust width as desired for portrait display */
  height: 150px; /* Adjust height for portrait ratio */
  object-fit: cover;
  margin: 0 auto 15px;
  border-radius: 0; /* Remove rounding to display full portrait */
}

.speaker p {
  font-size: 1rem;
  color: #db7515;
}
/* Responsive Styling */
@media (max-width: 768px) {
  .carousel-set {
    gap: 10px;
  }

  .headshot {
    width: 60px;
    height: 60px;
  }

  .speaker p {
    font-size: 0.9rem;
  }
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px; /* Removed gap between columns */
  max-width: 1200px;
  margin: 0 auto; /* Center the grid */
}

section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 200px;
}
/* Speaker Card */
.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: visible; /* Ensure nothing gets cut off */
  padding: 10px;
}
.speaker-image {
  width: 100%; /* Adjust width as needed */
  max-width: 150px; /* Constrain the size */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Options: cover, contain, fill, none */
}

.speaker-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin: 5px 0;
}

.speaker-role {
  font-size: 0.9rem;
  color: #ff7a00;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-image {
    width: 100px;
    height: 100px;
  }

  section h2 {
    font-size: 1.5rem;
  }
}
.speaker {
  width: 200px; /* Set this to your desired width */
  text-align: center;
}

.center-section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px; /* Adds space between the text and button */
}

.headline strong {
  font-weight: 900;
}

.cta-button {
  background-color: #d00000; /* Red color */
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 50px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px; /* Adds space above the button */
}

.cta-button:hover {
  background-color: #a00000; /* Darker red on hover */
}

/* Initial hidden state for the button */



/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .carousel {
    margin-bottom:100px;
  }

  .carousel-set {
    display: grid; /* Use grid for flexible layouts */
    grid-template-columns: repeat(2, 1fr); /* Two speakers side by side */
    gap: 20px; /* Space between speakers */
    justify-content: center;
    align-items: center;
    transform: translateX(0); /* Keep slides centered */
    transition: none; /* Disable animation for simplicity */
  }

  .speaker {
    width: 140px; /* Adjust speaker card size */
    text-align: center;
    margin: 0 auto; /* Center speaker cards */
  }

  .headshot {
    width: 80px; /* Adjust image size for smaller screens */
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 50%; /* Circular headshots for mobile */
  }

  .speaker p {
    font-size: 0.9rem; /* Adjust text size for mobile */
    line-height: 1.2; /* Improve readability */
  }
}

/* Extra Small Screens (phones <480px) */
@media (max-width: 480px) {
  .carousel-set {
    gap: 15px; /* Reduce gap for extra small screens */
  }

  .speaker {
    width: 120px; /* Smaller speaker cards */
  }

  .headshot {
    width: 70px; /* Smaller image size */
    height: 70px;
  }

  .speaker p {
    font-size: 0.8rem; /* Smaller font for very small screens */
  }
}


/* Copyright Section */
.copyright {
  text-align: center;
  background-color: #222;
  color: #bbb;
  padding: 15px 0;
  font-size: 14px;
}

.copyright p {
  margin: 0;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 60%;
  margin: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.modal-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal-contact,
.modal-body {
  font-size: 16px;
  line-height: 1.5;
}
.modal-body h3,
h4 {
  margin-top: 15px;
  font-weight: bold;
}
.acknowledgment {
  margin-top: 20px;
  font-style: italic;
}

/* Section Layout */
.membership-section {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 50px 10%;
  background: url("../images/bg-pattern.svg") no-repeat center;
  background-size: cover;
  margin-bottom: 100px;
}

/* Flexbox for Desktop */
.membership-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

/* Image Section */
.membership-image {
  flex: 1;
  max-width: 50%;
}

.membership-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text Section */
.membership-text {
  flex: 1;
  max-width: 45%;
}

.membership-text h1 {
  font-size: 44px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.membership-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.membership-btn {
  background-color:#b79020;
  color: #000;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 40px;
}

.membership-btn:hover {
  background-color: #b79020;
}
/* Style for the Title dropdown */
#title {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .membership-section {
    height: auto;
    padding: 30px 5%;
  }

  .membership-container {
    flex-direction: column;
    text-align: center;
  }

  .membership-image {
    max-width: 100%;
  }

  .membership-text {
    max-width: 100%;
    margin-top: 20px;
  }

  .membership-text h1 {
    font-size: 32px;
  }

  .membership-text p {
    font-size: 16px;
  }

  .membership-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Popup Form */

/* Popup background */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}

/* Popup content box */
.membership-popup-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: row; /* side-by-side on desktop */
  gap: 30px;
  max-height: 95vh;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Two Panels */
.membership-form-panel,
.membership-guide-panel {
  flex: 1;
  overflow-y: auto;
  max-height: 75vh;
}

/* Guide Panel */
.membership-guide-panel {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 1px solid #ddd;
  border-radius: 10px;
}

.membership-guide-panel h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: black;
}

.membership-guide-panel ol {
  padding-left: 20px;
  margin-bottom: 0;
  list-style: decimal;
}

.membership-guide-panel li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.membership-guide-panel li::marker {
  font-weight: bold;
  color: #b79020;
}

.membership-guide-panel .warning {
  color: #d9534f;
  font-weight: bold;
  margin-top: 10px;
}

.membership-guide-panel .success {
  color: #28a745;
  font-weight: bold;
  margin-top: 10px;
}

/* Form Fields */
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.membership-popup-content input,
.membership-popup-content select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Close Button */
.membership-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .membership-popup {
    align-items: flex-start;
    padding-top: 50px;
  }

  .membership-popup-content {
    flex-direction: column;
    width: 95%;
    padding: 20px 15px;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
  }

  .membership-guide-panel {
    border-left: none;
    border-top: 1px solid #ddd;
    margin-top: 20px;
  }

  .membership-guide-panel h3,
  .membership-form-panel h2 {
    font-size: 18px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  #cropContainer img {
    max-width: 100%;
    height: auto;
  }

  #cropContainer button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #b79020;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
  }
}

/* Guide toggle is hidden by default (desktop) */
/* Hide guide toggle by default (desktop) */
.guide-toggle {
  display: none;
}

/* Mobile styles only */
@media (max-width: 768px) {
  .membership-popup-content {
    position: relative;
  }

  .guide-toggle {
    display: block;
    width: 100%;
    padding: 10px;
    background: #b79020;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    /* Removed sticky positioning */
    margin-bottom: 10px; /* Add spacing */
  }

  .guide-content {
    display: none;
  }

  .guide-content.open {
    display: block;
    margin-top: 10px;
  }
}



 .alert-box {
            display: none; /* Initially hidden */
            background-color: #ff4444;
            color: white;
            padding: 15px;
            margin: 20px auto;
            width: 80%;
            text-align: center;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        
        
.auth-container {
    margin-top: 100px;
    margin-bottom: 200px;
}



#expected-outcome-list {
  list-style: none;
  padding-left: 0;
}

#expected-outcome-list li {
  padding: 8px 0;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

#expected-outcome-list li::before {
  content: "✔"; 
  color: #12E66; 
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 3px;
}


.accommodation-list {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 20px 0;
}

.accommodation-list li {
    background: #f4f4f4; /* Light gray background */
    padding: 12px 15px;
    margin-bottom: 10px;
    border-left: 5px solid #12E66; /* Accent color */
    font-size: 16px;
    font-weight: 500;
    color: #212A31; /* Dark text for readability */
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.accommodation-list li:hover {
    background: #12E66; /* Accent color on hover */
    color: #fff;
    border-left-color: #212A31; /* Dark accent */
}


.text-content ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin-top: 15px;
}

.text-content ul li {
    background: #f4f4f4; /* Light gray background */
    padding: 12px 15px;
    margin-bottom: 10px;
    border-left: 5px solid #12E66; /* Accent color */
    font-size: 16px;
    font-weight: 500;
    color: #212A31; /* Dark text for readability */
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.text-content ul li::before {
    content: "✔"; /* Add a checkmark */
    color: #12E66;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.text-content ul li strong {
    color: #2E3944; /* Slightly darker for emphasis */
}

.text-content ul li:hover {
    background: #12E66; /* Highlight on hover */
    color: #fff;
    border-left-color: #212A31; /* Dark border on hover */
}

.text-content ul li:hover strong {
    color: #fff; /* Make bold text white on hover */
}


.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 200px;
}

.video-h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.video-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.video-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}

.video-meta {
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
.video-h2 {
    font-size: 20px;
  }
}
.membership-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding-top: 251px;
}


.membership-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.membership-popup-content.two-panel {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
  position: relative;
}

.membership-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

.panel {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.form-panel {
  background: #f9f9f9;
  border-right: 1px solid #ddd;
}

.instructions-panel {
  background: #fdfdfd;
  color: #333;
}

.instructions-panel h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.instruction-list {
  list-style: decimal inside;
  padding-left: 0;
  line-height: 1.6;
  font-size: 16px;
}

.instruction-list ul {
  margin: 5px 0 15px 20px;
  list-style: disc;
}

.alert-notice {
  margin-top: 20px;
  color: #d9534f;
  font-weight: bold;
}

.confirmation-note {
  margin-top: 10px;
  color: #28a745;
  font-weight: bold;
}

.membership-scroll {
  max-height: 500px;
  overflow-y: auto;
}

.submit-btn {
  background: #2c3e50;
  color: white;
  padding: 10px 25px;
  border: none;
  margin-top: 20px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1a252f;
}



/* Slick spinner CSS */
.loader {
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Hide guide toggle by default (desktop) */
.guide-toggle {
  display: none;
}

/* Mobile styles only */
@media (max-width: 768px) {
  .membership-popup-content {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }

  .guide-toggle {
    display: block;
    width: 100%;
    padding: 10px;
    background: #b79020;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;

    /* Make button sticky at top while scrolling */
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .guide-content {
    display: none;
  }

  .guide-content.open {
    display: block;
    margin-top: 10px;
  }
}


.places-list li a {
  text-decoration: none !important;
  color: #a18167 !important; /* Use your custom color */
  font-weight: 500;
}

.places-list li a:hover {
  color: #8c6d55 !important; /* Optional hover color */
  text-decoration: none !important;
}
.places-list a {
  color: black;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.places-list a:hover {
  text-decoration: underline;
  color: #cd7656; /* Optional: adds a subtle hover color */
}

.kwanzaa-layout {
  display: flex;
  align-items: center;       /* Vertically align */
  justify-content: space-between;
  gap: 2rem;                 /* Space between text and image */
  flex-wrap: wrap;           /* Optional: wrap on smaller screens */
}

.kwanzaa-text {
  flex: 1;
  min-width: 300px;          /* Ensures it doesn't shrink too much */
}

.kwanzaa-image {
  flex: 1;
  min-width: 300px;
  text-align: right;         /* Optional: align image to right */
}

.kwanzaa-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .kwanzaa-layout {
    flex-direction: column;
    text-align: center;
  }

  .kwanzaa-image {
    text-align: center;
  }
}
.concert-celebration-section {
  padding: 60px 20px;
  background-color: #f0ede2;
}

.concert-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.concert-text {
  flex: 1;
}

.concert-text .headline {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-button {
  background-color: #c7675d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #bb6569;
}

.concert-image {
  flex: 1;
  text-align: center;
}

.concert-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .concert-layout {
    flex-direction: column;
    text-align: center;
  }

  .concert-text,
  .concert-image {
    width: 100%;
  }

  /* Add these: */
  .concert-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    margin-top: 20px;
    width: fit-content; /* Optional: keeps button tight to text */
  }
}


.concert-cta-button {
  background-color: #c7675d; /* Dark tone */
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 280px;
  text-align: center;
  margin-top: 20px;
}

.concert-cta-button:hover {
  background-color: #12E666; /* Accent green */
  color: #212A31; /* Deep base color */
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .concert-cta-button {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
  }
}
