body{
    font-family:'Montserrat',sans-serif;
    margin:0;
}

/* ================= HEADER GLASS ================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:0.3s;
}

/* SHRINK ON SCROLL */
.header.shrink{
  padding:5px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* CONTAINER */
.container{
  width:90%;
  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;
}

/* ================= NAV ================= */
nav ul{
  display:flex;
  gap:25px;
  list-style:none;
  align-items:center;
  position:relative;
}

/* LINKS */
nav a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  padding:8px 14px;
  border-radius:20px;
  transition:0.3s;
}

/* HOVER */
nav a:hover{
  color:#800000;
}

/* ================= SLIDING INDICATOR ================= */
.nav-indicator{
  position:absolute;
  bottom:-5px;
  height:3px;
  width:0;
  background:linear-gradient(135deg,#800000,#000);
  border-radius:10px;
  transition:all 0.4s ease;
}

/* ================= DONATE BUTTON ================= */
.donate-btn{
  background:linear-gradient(135deg,#800000,#5c0000);
  color:#fff !important;
  border-radius:30px;
  padding:8px 18px;
  font-weight:600;
  box-shadow:0 8px 20px rgba(128,0,0,0.25);
}

.donate-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(128,0,0,0.35);
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }
}

/* ================= GLOBAL HEADER FIX ================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

/* ensure consistency */
.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}

/* logo consistency */
.logo img{
  width:45px;
}

.logo h1{
  font-size:18px;
  margin:0;
}

.logo span{
  font-size:12px;
}

/* NAV CONSISTENCY FIX */
nav ul{
  display:flex;
  gap:25px;
  list-style:none;
  align-items:center;
}

nav a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  padding:8px 14px;
  border-radius:20px;
  transition:0.3s;
}

/* ACTIVE PAGE FIX (IMPORTANT) */
nav a.active{
  background:linear-gradient(135deg,#800000,#000);
  color:white;
}

/* DONATE BUTTON FIX */
.donate-btn{
  background:linear-gradient(135deg,#800000,#5c0000);
  color:#fff !important;
  border-radius:30px;
  padding:8px 18px;
  font-weight:600;
}

/* ================= HERO CINEMATIC ================= */
.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
    background:#000;
}

/* SLIDE CONTAINER */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transform:scale(1.1);
    transition:opacity 1.2s ease, transform 6s ease;
}

/* ACTIVE SLIDE */
.slide.active{
    opacity:1;
    transform:scale(1);
}

/* IMAGE CINEMATIC STYLE */
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:brightness(0.55) contrast(1.1);
}

/* TEXT OVERLAY */
.text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:2;
    width:80%;
    animation: fadeInUp 1.2s ease;
}

/* TITLE */
.text h2{
    font-size:52px;
    font-weight:900;
    letter-spacing:1px;
    text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* SUBTEXT */
.text p{
    font-size:18px;
    margin-top:10px;
    color:#ddd;
}

/* ANIMATION */
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translate(-50%, -40%);
    }
    to{
        opacity:1;
        transform:translate(-50%, -50%);
    }
}

/* DONATE BUTTON INSIDE SLIDE */
.donate-btn{
    display:inline-block;
    margin-top:15px;
    background:var(--maroon);
    color:white;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

/* hover zoom */
.donate-btn:hover{
    transform:scale(1.1);
    background:#5a0000;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .container{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .text h2{
        font-size:26px;
    }
}


/* ================= ABOUT SECTION ================= */
.about-section{
    padding:90px 20px;
    background:linear-gradient(135deg,#f9fafc,#ffffff);
    position:relative;
    overflow:hidden;
}

/* subtle cinematic glow background */
.about-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle,#80000033,#ffffff00);
    top:-100px;
    left:-100px;
    filter:blur(60px);
}

/* INTRO */
.about-intro{
    max-width:750px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.about-intro h2{
    font-size:34px;
    color:#800000;
    margin-bottom:10px;
    animation:fadeDown 1s ease;
}

.about-intro p{
    color:#555;
    font-size:16px;
    line-height:1.7;
}

/* ROW */
.about-row{
    display:flex;
    gap:25px;
    max-width:1000px;
    margin:0 auto 30px auto;
}

/* BOX */
.about-box{
    flex:1;
    background:white;
    padding:30px;
    border-radius:16px;
    text-align:left;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-top:4px solid #800000;

    transition:0.4s ease;
}

/* HOVER EFFECT */
.about-box:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 18px 40px rgba(128,0,0,0.2);
}

/* HEADINGS */
.about-box h3{
    color:#800000;
    margin-bottom:10px;
}

/* TEXT */
.about-box p,
.about-box li{
    color:#444;
    line-height:1.7;
}

/* LIST */
.about-box ul{
    padding-left:18px;
}

/* ================= SCROLL ANIMATION ================= */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ANIMATIONS */
@keyframes fadeDown{
    from{opacity:0; transform:translateY(-20px);}
    to{opacity:1; transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .about-row{
        flex-direction:column;
    }

    .about-intro h2{
        font-size:26px;
    }
}


/* ================= HERO SLIDER ================= */
.hero-slider{
  position:relative;
  height:100vh;
  overflow:hidden;
  background:#000;
}

/* SLIDES */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* IMAGES */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.65) contrast(1.1);
  transform:scale(1.05);
  animation:zoom 10s infinite alternate;
}

/* ZOOM EFFECT */
@keyframes zoom{
  from{transform:scale(1);}
  to{transform:scale(1.1);}
}

/* TEXT OVERLAY */
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:white;
  max-width:700px;

  animation:fadeUp 1.2s ease;
}

.hero-text h2{
  font-size:42px;
  font-weight:900;
  text-shadow:0 5px 20px rgba(0,0,0,0.6);
}

.hero-text p{
  font-size:16px;
  margin-top:10px;
  opacity:0.9;
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0; transform:translate(-50%,-40%);}
  to{opacity:1; transform:translate(-50%,-50%);}
}

/* ================= DONATION SLIDE ================= */
.project-box{
  background:rgba(0,0,0,0.55);
  padding:25px;
  border-radius:15px;
  backdrop-filter:blur(8px);
}

.donate-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 20px;
  background:linear-gradient(135deg,#800000,#b30000);
  color:white;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:0.3s;
}

.donate-btn:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(128,0,0,0.4);
}

/* ================= MARQUEE ================= */
.marquee{
  position:absolute;
  bottom:20px;
  width:100%;
  overflow:hidden;
  white-space:nowrap;
}

.marquee-text{
  display:inline-block;
  padding-left:100%;
  animation:scroll 18s linear infinite;
  color:white;
  font-size:14px;
  font-weight:500;
}

@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-100%);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-text h2{
    font-size:24px;
  }

  .hero-text p{
    font-size:13px;
  }
}
/* SECTION */
.about-section{
    padding:80px 20px;
    background:#f9fafc;
    text-align:center;
}

/* INTRO BOX */
.about-intro-box{
    max-width:700px;
    margin:auto;
    position:relative;
    padding:40px 20px;
    transition:0.3s;
}

/* TEXT */
.about-intro-box p{
    color:#555;
    line-height:1.7;
    font-size:16px;
}

/* 🔥 ABOUT LABEL (HIDDEN FIRST) */
.about-label{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    background:#800000;
    color:white;
    padding:10px 25px;
    border-radius:20px;
    font-weight:600;
    opacity:0;
    transition:0.3s;
}

/* SHOW ON HOVER */
.about-intro-box:hover .about-label{
    opacity:1;
    bottom:-30px;
}

/* ROW */
.about-row{
    display:flex;
    gap:25px;
    max-width:900px;
    margin:60px auto 0 auto;
}

/* BOX */
.about-box{
    flex:1;
    background:white;
    padding:28px;
    border-radius:12px;
    text-align:left;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
    border-top:4px solid #800000;
}

/* ABOUT LABEL (hidden by default) */
.about-label{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    background:#800000;
    color:white;
    padding:10px 25px;
    border-radius:20px;
    font-weight:600;
    opacity:0;
    transition:0.3s;
}

/* SHOW WHEN ACTIVE */
.about-label.show{
    opacity:1;
    bottom:-30px;
}
/* HEADINGS */
.about-box h3{
    margin-bottom:10px;
    color:#800000;
}

/* TEXT */
.about-box p,
.about-box li{
    color:#444;
    line-height:1.6;
}

.about-box ul{
    padding-left:18px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .about-row{
        flex-direction:column;
    }

}
nav a.active{
  background:linear-gradient(135deg,#800000,#000);
  color:white;
}

/* hover zoom */
.donate-btn:hover{
    transform:scale(1.1);
    background:#5a0000;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .container{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .text h2{
        font-size:26px;
    }
}

/* ================= 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;
    }

}