
/* ================= GLOBAL ================= */
body{
  margin:0;
  font-family:'Montserrat',sans-serif;
  background:#fafafa;
  color:#222;
}
/* ================= HEADER ================= */
.header{
    position:sticky;
    top:0;
    z-index:1000;

    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.06);
}

/* ================= CONTAINER ================= */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;
}

/* ================= LOGO ================= */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
  width:60px;
}


.logo h1{
    font-size:20px;
    font-weight:900;
    letter-spacing:1px;
    color:#111;
}

/* ================= NAV ================= */
nav ul{
    display:flex;
    gap:20px;
    list-style:none;
    align-items:center;
}

/* LINKS */
nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;

    padding:8px 14px;
    border-radius:25px;

    transition:all 0.3s ease;
}

/* HOVER */
nav a:hover{
    background:rgba(128,0,0,0.08);
    color:#800000;
}

/* ================= VOLUNTEERS ACTIVE ================= */
.volunteer-active{
    background:linear-gradient(135deg,#222,#800000);
    color:white !important;

    padding:8px 18px;
    border-radius:25px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.volunteer-active:hover{
    background:linear-gradient(135deg,#800000,#000);
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(128,0,0,0.3);
}

/* ================= DONATE BUTTON ================= */
.donate-btn{
    background:#800000;
    color:#fff !important;

    padding:8px 18px;
    border-radius:25px;

    font-weight:600;

    box-shadow:0 8px 20px rgba(128,0,0,0.25);
    transition:0.3s;
}

.donate-btn:hover{
    background:#5c0000;
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(128,0,0,0.35);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

    .container{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        font-size:14px;
    }

}

/* ================= HERO ================= */
.volunteer-hero{
  height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:linear-gradient(135deg,#800000,#0b0b0b);
  color:white;
  padding:20px;
}

.hero-content h1{
  font-size:42px;
  font-weight:900;
}

.hero-content p{
  margin:15px 0;
  font-size:16px;
  opacity:0.9;
}

.hero-btn{
  display:inline-block;
  padding:12px 25px;
  background:white;
  color:#800000;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  transition:0.3s;
}

.hero-btn:hover{
  transform:scale(1.05);
}

/* ================= TAGLINE ================= */
.volunteer-tagline{
  text-align:center;
  padding:15px;
  background:#fff;
  font-weight:500;
  color:#444;
}

/* ================= TEAM ================= */
.team-section{
  padding:70px 8%;
  text-align:center;
}

.team-section h2{
  color:#800000;
  margin-bottom:30px;
}

/* GRID */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.team-card{
  background:white;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.4s;
}

.team-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.team-card img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #800000;
}

.team-card h3{
  margin-top:10px;
}

.team-card span{
  color:#800000;
  font-weight:600;
  font-size:13px;
}

.team-card p{
  font-size:14px;
  margin:10px 0;
  color:#555;
}

/* SOCIAL */
.social a{
  display:inline-block;
  margin:5px;
  padding:6px 12px;
  border-radius:20px;
  background:#800000;
  color:white;
  text-decoration:none;
  font-size:12px;
}

/* ================= FORM ================= */
.apply-section{
  padding:70px 8%;
  text-align:center;
  background:#fff;
}

.apply-section h2{
  color:#800000;
}

.apply-form{
  max-width:600px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:20px;
}

.apply-form input,
.apply-form textarea{
  padding:12px;
  border:1px solid #eee;
  border-radius:10px;
  outline:none;
}

.apply-form button{
  padding:12px;
  background:linear-gradient(135deg,#800000,#b30000);
  color:white;
  border:none;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.apply-form button:hover{
  transform:scale(1.03);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:28px;
  }
}

/* ================= WHATSAPP ICON BUTTON ================= */
.whatsapp-icon-btn{
  position:fixed;
  bottom:25px;
  right:25px;

  display:flex;
  align-items:center;
  gap:10px;

  background:linear-gradient(135deg,#25D366,#128C7E);
  color:white;

  padding:12px 16px;
  border-radius:50px;

  text-decoration:none;
  font-family:'Montserrat',sans-serif;
  font-weight:600;

  box-shadow:0 10px 25px rgba(0,0,0,0.2);

  animation:floatBtn 3s ease-in-out infinite;
  transition:0.3s ease;
  z-index:9999;
}

/* ICON */
.whatsapp-icon-btn span{
  font-size:22px;
}

/* TEXT */
.whatsapp-icon-btn p{
  margin:0;
  font-size:13px;
}

/* HOVER EFFECT */
.whatsapp-icon-btn:hover{
  transform:scale(1.08);
  box-shadow:0 15px 35px rgba(37,211,102,0.4);
}

/* FLOAT ANIMATION */
@keyframes floatBtn{
  0%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
  100%{transform:translateY(0);}
}

/* MOBILE RESPONSIVE */
@media(max-width:600px){
  .whatsapp-icon-btn{
    padding:10px 12px;
  }

  .whatsapp-icon-btn p{
    display:none; /* icon only on mobile */
  }
}

/* ================= MOBILE NAV UPGRADE ================= */

/* HAMBURGER */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#111;
  border-radius:3px;
  transition:0.3s;
}

/* ANIMATION TO X */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/* MOBILE MENU */
@media(max-width:768px){

  /* SHOW HAMBURGER */
  .menu-toggle{
    display:flex;
  }

  /* HIDE NAV DEFAULT */
  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;

    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(15px);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.4s ease;
  }

  /* SHOW MENU */
  nav.active{
    right:0;
  }

  nav ul{
    flex-direction:column;
    gap:20px;
  }

  nav a{
    font-size:18px;
    font-weight:600;
  }

}
/* ACTIVE PAGE */
nav a.active{
  background:linear-gradient(135deg,#800000,#000);
  color:white;
}

/* ================= FOOTER ================= */
.footer{
    background:#0f0f0f;
    color:white;
    padding-top:70px;
    margin-top:80px;
    position:relative;
}

/* CONTAINER */
.footer-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

    padding-bottom:50px;
}

/* FOOTER BOX */
.footer-box h3{
    font-size:22px;
    margin-bottom:20px;
    color:#fff;
    position:relative;
}

/* UNDERLINE */
.footer-box h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#800000;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.footer-logo img{
    width:55px;
}

.footer-logo h2{
    font-size:22px;
    margin:0;
}

.footer-logo span{
    color:#ccc;
    font-size:13px;
}

/* PARAGRAPH */
.footer-box p{
    color:#bbb;
    line-height:1.8;
    font-size:15px;
}

/* LINKS */
.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#fff;
    padding-left:6px;
}

/* SOCIALS */
.footer-socials{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#1b1b1b;

    color:white;
    text-decoration:none;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#800000;
    transform:translateY(-5px);
}

/* BUTTON */
.footer-btn{
    display:inline-block;
    margin-top:20px;

    background:linear-gradient(135deg,#800000,#5c0000);
    color:white;

    padding:12px 22px;
    border-radius:30px;

    text-decoration:none;
    font-weight:600;

    transition:0.3s;
}

.footer-btn:hover{
    transform:scale(1.05);
}

/* HOURS */
.footer-hours{
    margin-top:20px;
    color:#eee;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);

    padding:25px 10%;
    text-align:center;

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#aaa;
    font-size:14px;
}

/* CREDIT */
.footer-credit{
    color:#800000;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        flex-direction:column;
    }

}

/* ================= VOLUNTEER SECTION ================= */

.volunteer-section{
    padding:100px 8%;
    background:#f5f9fc;
    font-family:'Montserrat',sans-serif;
}

/* CONTAINER */
.volunteer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:60px;
    align-items:start;
}

/* ================= LEFT CONTENT ================= */

.volunteer-tag{
    background:#f4b400;
    color:#05213a;

    padding:10px 24px;
    border-radius:50px;

    font-size:14px;
    font-weight:700;

    display:inline-block;
    margin-bottom:25px;
}

.volunteer-content h2{
    font-size:48px;
    color:#05213a;
    line-height:1.2;
    margin-bottom:25px;
}

.volunteer-content p{
    color:#5d6d7c;
    line-height:1.9;
    font-size:17px;
    margin-bottom:40px;
}

/* GUIDE */
.volunteer-guide{
    background:white;
    padding:35px;
    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.volunteer-guide h3{
    color:#05213a;
    margin-bottom:25px;
    font-size:24px;
}

.guide-item{
    display:flex;
    align-items:flex-start;
    gap:15px;

    margin-bottom:20px;
}

.guide-item i{
    color:#f4b400;
    font-size:18px;
    margin-top:4px;
}

.guide-item span{
    color:#5d6d7c;
    line-height:1.8;
}

/* ================= FORM ================= */

.volunteer-form-box{
    background:white;
    padding:45px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.volunteer-form h3{
    font-size:34px;
    color:#05213a;
    margin-bottom:10px;
}

.form-intro{
    color:#6b7b8c;
    margin-bottom:35px;
    line-height:1.8;
}

/* INPUTS */
.input-group{
    margin-bottom:24px;
}

.input-group label{
    display:block;
    margin-bottom:10px;

    font-weight:700;
    color:#05213a;
    font-size:15px;
}

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;
    padding:18px 20px;

    border:1px solid #dbe4ec;
    border-radius:16px;

    outline:none;

    font-size:15px;
    font-family:'Montserrat',sans-serif;

    transition:0.3s;
    background:#fff;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    border-color:#f4b400;
    box-shadow:0 0 0 4px rgba(244,180,0,0.15);
}

/* FILE */
.input-group small{
    display:block;
    margin-top:10px;

    color:#7b8b9a;
    font-size:13px;
}

/* BUTTON */
.volunteer-btn{
    width:100%;

    border:none;
    padding:18px;

    border-radius:50px;

    background:#05213a;
    color:white;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
    transition:0.4s;
}

.volunteer-btn i{
    margin-right:10px;
}

.volunteer-btn:hover{
    background:#f4b400;
    color:#05213a;

    transform:translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .volunteer-section{
        padding:80px 6%;
    }

    .volunteer-content h2{
        font-size:34px;
    }

    .volunteer-form-box{
        padding:30px;
    }

}