:root{
    --blue:#123f73;
    --blue2:#1f5f9f;
    --gold:#f5a623;
    --green:#2f9e44;
    --light:#f7f9fc;
    --dark:#14213d;
}

*{box-sizing:border-box}

html, body{
    min-height:100%;
}

body{
    margin:0;
    font-family:"Segoe UI", Arial, sans-serif;
    background:#f7f9fc;
    color:#1d2b3a;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

main{
    flex:1 0 auto;
}

.site-header{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 7%;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    position:sticky;
    top:0;
    z-index:1000;
}

.brand a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.brand img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.brand-text{
    color:#123f73;
    font-size:22px;
    font-weight:900;
    letter-spacing:.3px;
}

.brand-text b{
    color:#f5a623;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.site-nav a{
    text-decoration:none;
    color:#334155;
    font-weight:800;
    transition:.3s;
}

.site-nav a:hover,
.site-nav a.active{
    color:var(--gold);
}

.donate-link{
    background:var(--gold);
    color:white!important;
    padding:10px 15px;
    border-radius:8px;
}

#menu-toggle{display:none}

.menu-icon{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:var(--blue);
}

.site-footer{
    background:#0f2f55;
    color:#dbeafe;
    text-align:center;
    padding:28px 7%;
    margin-top:auto;
}

.site-footer p{
    margin:0 0 6px;
    font-weight:800;
}

@media(max-width:800px){
    .site-header{
        padding:15px 20px;
    }

    .menu-icon{
        display:block;
    }

    .site-nav{
        position:absolute;
        top:64px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:16px;
        display:none;
        box-shadow:0 12px 25px rgba(0,0,0,.08);
    }

    #menu-toggle:checked ~ .site-nav{
        display:flex;
    }

    .site-nav a{
        width:100%;
    }

    .donate-link{
        text-align:center;
    }
}

@media(max-width:600px){
    .brand img{
        width:40px;
        height:40px;
    }

    .brand-text{
        font-size:17px;
    }
}



.contact-open-btn{
    background:#f5a623;
    color:white;
    border:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:900;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.contact-open-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.contact-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.62);
    z-index:99999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.contact-popup-card{
    background:#edf4fb;
    max-width:760px;
    width:100%;
    border-radius:28px;
    padding:42px;
    position:relative;
    border-left:8px solid #123f73;
    box-shadow:0 30px 80px rgba(0,0,0,.28);
    animation:popupFade .25s ease both;
}

.contact-popup-card h2{
    color:#123f73;
    font-size:36px;
    margin:0 0 20px;
}

.contact-popup-card p{
    font-size:19px;
    line-height:1.8;
    color:#334155;
}

.contact-popup-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:28px;
}

.contact-popup-actions a{
    text-decoration:none;
    color:white;
    padding:17px 26px;
    border-radius:14px;
    font-weight:900;
    font-size:18px;
    transition:.3s;
}

.contact-popup-actions a:hover{
    transform:translateY(-3px);
}

.popup-whatsapp{background:#25D366;}
.popup-email{background:#123f73;}
.popup-call{background:#f5a623;}

.contact-close{
    position:absolute;
    top:16px;
    right:18px;
    background:white;
    border:none;
    color:#123f73;
    width:36px;
    height:36px;
    border-radius:50%;
    font-size:26px;
    cursor:pointer;
    font-weight:bold;
}

@keyframes popupFade{
    from{opacity:0;transform:translateY(20px) scale(.96);}
    to{opacity:1;transform:translateY(0) scale(1);}
}

@media(max-width:700px){
    .contact-popup-card{
        padding:32px 22px;
    }

    .contact-popup-card h2{
        font-size:28px;
    }

    .contact-popup-card p{
        font-size:16px;
    }

    .contact-popup-actions{
        flex-direction:column;
    }

    .contact-popup-actions a{
        width:100%;
        text-align:center;
    }
}



