
:root {
  --primary: #1896d0;
  --accent: #c71877;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  font-size: 0.9rem;
  color: white;
}

.top-bar a {
  color: white;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #fdd835;
}

/* Navbar */
.navbar-brand img {
  height: 50px;
}

.navbar-light .nav-link {
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link.active {
  color: var(--accent);
}

.navbar-light .nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 5px;
  margin-top: 5px;
}

.btn-donate {
  background: var(--accent);
  color: white !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-donate:hover {
  background: #a0125f;
}


.btn-join {
    background-color: #c71877;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
    transition: 0.3s ease;
  }
  
  .btn-join:hover {
    background-color: #a0125f;
  }
  


footer a:hover {
    color: #c71877 !important;
    text-decoration: underline;
  }
  

@media (max-width: 768px) {
  .navbar-collapse {
    background-color: #fff;
    padding: 15px 0;
  }
  .btn-donate {
    width: 90%;
    margin: 10px auto;
  }
}
/* Adjust carousel control buttons on mobile */
@media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
      width: 30px;
      height: 30px;
      top: 90%; /* Move below the text */
      transform: translateY(-50%);
      opacity: 0.8;
    }
  
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 70% 70%;
      width: 25px;
      height: 25px;
    }
  
    .carousel .container {
      padding-bottom: 60px; /* Extra space for controls */
    }
  }
  