/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#f6f8fb;
    color:#1a1a1a;
    line-height:1.6;
}

/* ================= GLOBAL ================= */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ================= HEADER ================= */
.header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.06);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 0;
}

.logo img{
    width:60px;
}

.logo h1{
    font-size:20px;
    font-weight:900;
    letter-spacing:1px;
}

/* ================= NAV ================= */
nav ul{
    display:flex;
    gap:22px;
    list-style:none;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

/* elegant underline */
nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#800000;
    transition:0.3s ease;
}

nav a:hover{
    color:#800000;
}

nav a:hover::after{
    width:100%;
}

/* ================= BUTTON ================= */
.btn{
    background:#800000;
    color:#fff !important;
    padding:9px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:all 0.3s ease;
}

.btn:hover{
    background:#5c0000;
    transform:translateY(-2px);
}

/* ================= HERO ================= */
.hero{
    text-align:center;
    padding:120px 20px;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("Junia.jpg") center/cover no-repeat;
    color:#fff;
}

.hero h1{
    font-size:46px;
    font-weight:900;
    margin-bottom:12px;
}

.hero p{
    font-size:17px;
    color:#ddd;
    margin-bottom:20px;
}

/* ================= DONATION ================= */
.donation{
    padding:90px 20px;
    text-align:center;
}

.donation h2{
    font-size:32px;
    margin-bottom:45px;
    font-weight:700;
}

/* GRID */
.donation-grid{
    display:flex;
    gap:35px;
    justify-content:center;
    flex-wrap:wrap;
}

/* BOX */
.donation-box{
    background:#ffffff;
    padding:32px;
    border-radius:18px;
    width:330px;
    text-align:left;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
    border-top:5px solid #800000;
}

.donation-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.donation-box h3{
    color:#800000;
    font-size:21px;
    margin-bottom:12px;
}

.donation-box p{
    margin-bottom:8px;
    color:#444;
}

.donation-box ul{
    margin:12px 0;
    padding-left:18px;
}

.donation-box li{
    margin-bottom:6px;
    color:#444;
}

/* ================= CONFIRM BUTTON (PREMIUM) ================= */
.confirm-btn{
    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:18px;
    padding:12px 20px;

    border-radius:50px;
    font-size:14px;
    font-weight:600;

    text-decoration:none;
    color:white;

    background:linear-gradient(135deg, #800000, #a00000);

    position:relative;
    overflow:hidden;

    transition:all 0.35s ease;
    box-shadow:0 8px 25px rgba(128,0,0,0.25);
}

/* hover */
.confirm-btn:hover{
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 12px 30px rgba(128,0,0,0.35);
}

/* click */
.confirm-btn:active{
    transform:scale(0.96);
}

/* shine effect */
.confirm-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition:0.6s;
}

.confirm-btn:hover::before{
    left:100%;
}

/* ================= CTA ================= */
.cta{
    text-align:center;
    padding:80px 20px;
    background:#800000;
    color:white;
}

.cta h2{
    font-size:32px;
}

.cta p{
    margin-top:10px;
    color:#eee;
}

/* ================= FOOTER ================= */
.footer{
    text-align:center;
    padding:20px;
    background:#111;
    color:#fff;
    font-size:14px;
}

/* ================= WHATSAPP ================= */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:12px 16px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

    .container{
        flex-direction:column;
        gap:10px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:28px;
    }

    .donation-grid{
        flex-direction:column;
        align-items:center;
    }

}

/* ================= 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;
}
/* ACTIVE PAGE */
nav a.active{
  background:linear-gradient(135deg,#800000,#000);
  color:white;
}


/* ================= 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;
    }

}

