html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url('../auth/botImage2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures background doesn't scroll */
    background-position: center bottom;
    background-color: #A2C9F8;
    overflow-y: auto; /* Make the page scrollable */
}


.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgb(255, 255, 255);
    position: relative;
    z-index: 2;
}

/* Buttons */
.button {
    padding: 12px 30px;
    background-color: #17469A;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #3A72B6;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 10;
}

.dropdown-content a {
    color: #17469A;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 20px;
}

.content h1 {
    color: white;
    margin-top: 40px;
    text-align: center;
    font-size: 36px;
    animation: glow 2.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 
          0 0 5px #4FC3F7,  /* soft cyan glow */
          0 0 10px #4FC3F7,
          0 0 15px #FFA500,  /* orange highlight */
          0 0 20px #FFA500;
        color: #17469A;
    }
    50% {
        text-shadow:
          0 0 10px #FFEB3B, /* bright yellow glow */
          0 0 20px #FFEB3B,
          0 0 30px #FFA500,
          0 0 40px #FFA500;
        color: #4FC3F7; /* lighter cyan text */
    }
    100% {
        text-shadow:
          0 0 20px #FFA500,
          0 0 30px #FFA500,
          0 0 40px #4FC3F7,
          0 0 50px #4FC3F7;
        color: #FFA500;
    }
}


.image {
    margin-top: 100px;
    width: 40%;
    height: auto;
    margin-bottom: 30px;
}

.user_volunteer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.menu-buttons {
    display: flex;
    gap: 15px;
}

.moving-text {
    flex-grow: 1;
    overflow: hidden;
    padding: 0 20px;
}

.moving-text-container {
    flex-grow: 1;
    text-align: center;
    margin: 0 20px;
    border: 2px solid #17469A;
    border-radius: 15px;
    padding: 10px;
    background-color: #f0f8ff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}


.moving-text p {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    color: #17469A;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.enter-button {
    background-color: #FFA500; /* Orange color */
    color: white;
}

.enter-button:hover {
    background-color: #FF8C00; /* Darker orange on hover */
    color: white;
}

.intro-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: white;
    background-color: rgba(23, 70, 154, 0.7);
    padding: 15px 25px;
    border-radius: 15px;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between images */
    margin-bottom: 30px;
}

.image-row img {
    width: 30%;        /* roughly 3 images per row */
    height: 200px;     /* fixed height */
    object-fit: cover; /* crop and fill without distortion */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Container for raindrops */
.rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

/* Single raindrop style */
.raindrop {
  position: absolute;
  bottom: 100%;
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, #a4c0f8, #17469a);
  border-radius: 50% / 70%;
  opacity: 0.7;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Animate raindrops with random delays & positions */
.raindrop:nth-child(1) {
  left: 10%;
  animation-duration: 1.1s;
  animation-delay: 0s;
}
.raindrop:nth-child(2) {
  left: 25%;
  height: 12px;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
}
.raindrop:nth-child(3) {
  left: 40%;
  height: 17px;
  animation-duration: 1.4s;
  animation-delay: 0.5s;
}
.raindrop:nth-child(4) {
  left: 55%;
  height: 13px;
  animation-duration: 1.2s;
  animation-delay: 0.7s;
}
.raindrop:nth-child(5) {
  left: 70%;
  height: 14px;
  animation-duration: 1.1s;
  animation-delay: 1s;
}
.raindrop:nth-child(6) {
  left: 85%;
  height: 16px;
  animation-duration: 1.3s;
  animation-delay: 1.2s;
}
.raindrop:nth-child(7) {
  left: 20%;
  height: 12px;
  animation-duration: 1.5s;
  animation-delay: 1.4s;
}
.raindrop:nth-child(8) {
  left: 35%;
  height: 15px;
  animation-duration: 1.2s;
  animation-delay: 1.6s;
}
.raindrop:nth-child(9) {
  left: 60%;
  height: 13px;
  animation-duration: 1.4s;
  animation-delay: 1.8s;
}
.raindrop:nth-child(10) {
  left: 80%;
  height: 16px;
  animation-duration: 1.3s;
  animation-delay: 2s;
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Water ripple effect at bottom (like flood puddles) */
.water-ripples {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(circle at 50% 100%, rgba(23, 70, 154, 0.4), transparent 80%);
  pointer-events: none;
  z-index: 999;

  /* subtle wave movement */
  animation: ripple-wave 6s ease-in-out infinite;
  filter: blur(4px);
  opacity: 0.7;
}

@keyframes ripple-wave {
  0%, 100% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 52% 98%;
  }
}

/* Team container styles */
.team-container {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;
    gap: 30px;
    padding: 30px 20px 60px;
}

/* Team member card */
.team-member {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Team member image */
.team-member img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 10px;
}

/* Team member name and role */
.team-member h3 {
    margin: 10px 0 5px;
    font-size: 22px;
    color: #17469A;
}

.team-member p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
}

.contact-method {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
}

.contact-method i {
    font-size: 40px;
    color: #17469A;
    margin-bottom: 10px;
}

.contact-method a {
    text-decoration: none;
    color: #17469A;
    font-size: 18px;
    font-weight: bold;
}

.donate-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.donate-method {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    color: white;
    border-radius: 15px;
    padding: 30px 40px;
    text-align: center;
    width: 220px;
    box-shadow: 0 8px 16px rgba(67, 206, 162, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.donate-method:hover {
    background: linear-gradient(135deg, #185a9d, #43cea2);
    box-shadow: 0 12px 25px rgba(24, 90, 157, 0.8);
    transform: translateY(-6px);
}

.donate-method i {
    color: #a2f5e9; /* light mint icon */
}


