/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

button {
  cursor: pointer;
}

.bg-image {
  background: url('../assets/images/donate-bg-img.jpg') fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* color: #fff; */
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.main-overlay-container {
  width: 100%;
  height: 100vh;
  background: #00000066;
  /* Dark overlay */
  z-index: 0;
  overflow: hidden;
  position: relative;
}

a {
  /* overflow: hidden; */

  text-decoration: none;
  color: inherit;
}

/* Navbar Styles */

.navbar {
  position: sticky;
  top: 0;
  padding: 1rem 4rem;
  background: #FFFFFF1A;
  backdrop-filter: blur(18.31px);
  z-index: 2;
}

.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: auto;
}

.logo {
  cursor: pointer;
}

.navbar .logo img {
  width: 4rem;
  height: 4rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar ul li a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #FFD966;
}

.nav-link.active {
  color: #FFD966;
  /* Active tab color */
  font-weight: 600;
  /* Optional: make it stand out */
}

.hamburger {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: fixed;
  opacity: 0;
  /* height: 0; */
  display: block;
  padding: 1rem;
  text-align: center;
  width: 100%;
  background-color: #FFFFFF4D;
  background: rgba(255, 255, 255, 18.31px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.5s, height 0.5s ease;
  z-index: -1;
}

.mobile-menu.active {
  opacity: 1;
  min-height: 10rem;
  z-index: 1000;

}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu ul li {

  list-style: none;
  color: #FFD966;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding-bottom: 0.5rem;
}

.donate-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.donate-btn a {
  padding: 0.5rem 1rem;
  background: #FFD966;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: background 0.3s;
  color: black;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donate-btn a:hover {
  background: #e0a800;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
      background: #FFFFFF1A;
    backdrop-filter: blur(18.31px);
  color: white;
  padding: 1.25rem;
  text-align: center;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

#cookie-banner a {
  color: #87CEFA;
  text-decoration: underline;
}

#cookie-banner button {
      padding: 0.5rem 1rem;
    background: #FFD966;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: background 0.3s;
    color: black;
    margin-top: 1.5rem;
    border: none;
    outline: none;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .navbar ul {
    display: none;
    /* Hide navigation links for smaller screens */
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

@media (max-width: 768px) {


  .navbar {
    padding: 1rem 1rem;
  }

  .donate-btn {
    gap: 1rem;
  }

}