/*==================================================
ROOT VARIABLES
==================================================*/

:root{

    --primary:#B30000;
    --primary-dark:#870000;
    --gold:#D4AF37;

    --dark:#222222;
    --gray:#666666;
    --light:#F8F8F8;
    --white:#FFFFFF;

    --radius:18px;

    --shadow:0 15px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

    --max-width:1400px;

}


/*==================================================
RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:var(--dark);
    background:var(--white);

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

iframe{

    width:100%;
    border:0;

}

a{

    text-decoration:none;
    transition:var(--transition);

}


/*==================================================
TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;
    line-height:1.2;
    letter-spacing:-.03em;
    margin-bottom:15px;

}

p{

    color:var(--gray);
    margin-bottom:18px;

}


/*==================================================
LAYOUT
==================================================*/

.container{

    width:min(92%,var(--max-width));
    margin:auto;

}

section{

    padding:90px 0;

}

.grid{

    display:grid;
    gap:35px;

}

.grid-2{

    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));

}

.grid-3{

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

}



/*=====================================
TOP HEADER
======================================*/

.top-header{
    background:#111;
    color:#fff;
    padding:10px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    font-size:14px;
}

.top-header-left,
.top-header-right{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.top-header a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-header a:hover{
    color:var(--gold);
}

.top-header-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-header-right a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:36px;
    height:36px;

    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;

    transition:all .3s ease;
}

.top-header-right a:hover{
    background:#FFD700;
    color:#b30000;
    border-color:#FFD700;
    transform:translateY(-2px);
}

.top-header-right i{
    font-size:16px;
}
/*=====================================
HEADER
======================================*/

header{
    position:sticky;
    top:0;
    z-index:9999;

    background:#fff;
    backdrop-filter:blur(12px);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:15px 6%;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.logo{
    height:75px;
}

.header-right{
    display:flex;
    align-items:center;
    gap:35px;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#b30000;
}

.cta-btn{
    padding:12px 25px;
    background:#b30000;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
    transition:.3s;
}

.cta-btn:hover{
    background:#8c0000;
}

/*=====================================
MOBILE MENU
======================================*/

.menu-toggle{
    display:none;
    cursor:pointer;
    font-size:32px;
    color:#222;
}

/*=====================================
TABLETS
======================================*/

@media(max-width:992px){

.header-right{
    gap:20px;
}

nav{
    gap:18px;
}

.logo{
    height:65px;
}

}

/*=====================================
MOBILE
======================================*/

@media(max-width:768px){

.top-header{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

.top-header-left,
.top-header-right{
    justify-content:center;
    gap:15px;
}

header{
    padding:15px 20px;
    position:relative;
}

.logo{
    height:60px;
}

.menu-toggle{
    display:block;
}

.header-right{
    display:block;
}

nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;

    display:none;
    flex-direction:column;
    gap:0;

    background:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

nav.show{
    display:flex;
}

nav a{
    padding:16px 25px;
    border-bottom:1px solid #eee;
}

nav a:hover{
    background:#f7f7f7;
}

.cta-btn{
    display:none;
}

}

/*=====================================
SMALL PHONES
======================================*/

@media(max-width:480px){

.logo{
    height:52px;
}

.top-header{
    font-size:13px;
}

}
/*==================================================
BUTTONS
==================================================*/

.cta-btn,
.hero-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

    background:var(--primary);

    color:#fff;

}

.cta-btn:hover,
.hero-btn:hover{

    background:var(--primary-dark);

}

.hero-btn.outline{

    background:transparent;
    border:2px solid #fff;

}


/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding:120px 8%;

    color:#fff;

    background:

    linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)),
    url(../images/bg_hero.png) center/cover no-repeat;

}

.hero-content{

    max-width:700px;

}

.hero h1{

    font-size:clamp(2.5rem,6vw,4.5rem);

}

.hero h2{

    font-size:clamp(1.4rem,3vw,2.2rem);
    color:var(--gold);

}

.hero h3{

    font-size:1.25rem;
    font-weight:500;

}

.hero p{

    font-size:clamp(1rem,2vw,1.2rem);
    color:#f3f3f3;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;

    align-items:center;

    margin:100px auto;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    display:block;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:.4s;

}

.about-image:hover img{

    transform:scale(1.02);

}

.about-content{

    max-width:720px;

}

.about-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff4f4;

    color:#b30000;

    padding:10px 22px;

    border-radius:40px;

    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

}

.about-tag i{

    color:#FFD700;

}

.about-content h2{

    font-size:clamp(2rem,4vw,3rem);

    color:#222;

    margin:25px 0;

    line-height:1.2;

}

.about-content p{

    color:#555;

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,minmax(180px,1fr));

    gap:18px;

    margin:35px 0;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:12px;

    padding:15px 18px;

    border-radius:12px;

    background:#fafafa;

    border-left:4px solid #b30000;

    font-weight:600;

    transition:.3s;

}

.feature-item:hover{

    transform:translateX(6px);

    background:#fff;

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.feature-item i{

    color:#b30000;

    font-size:18px;

    width:24px;

    text-align:center;

}

.about-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:10px;

    padding:16px 34px;

    background:#b30000;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    background:#8d0000;

    transform:translateY(-4px);

}

.about-btn i{

    transition:.35s;

}

.about-btn:hover i{

    transform:translateX(6px);

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.about-section{

    grid-template-columns:1fr;

    gap:45px;

}

.about-content{

    max-width:100%;

}

.about-image{

    max-width:650px;

    margin:auto;

}

}

@media(max-width:768px){

.about-section{

    margin:70px auto;

    gap:35px;

}

.about-content{

    text-align:center;

}

.about-tag{

    margin:auto;

}

.about-features{

    grid-template-columns:1fr;

}

.feature-item{

    justify-content:center;

}

.about-btn{

    width:100%;

    justify-content:center;

}

}

@media(max-width:480px){

.about-content h2{

    font-size:2rem;

}

.about-content p{

    font-size:15px;

}

.about-image img{

    border-radius:16px;

}

}


/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    display:inline-block;

    font-size:clamp(2rem,4vw,3rem);

    color:var(--primary);

    margin-bottom:30px;

}

.section-title::after{

    content:"";

    display:block;

    width:80px;
    height:4px;

    margin-top:12px;

    background:var(--gold);

}


/*==================================================
CARDS
==================================================*/

.card{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

.card-overlay{

    background:rgba(0,0,0,.72);

    padding:25px;

    color:#fff;

}

.card-overlay h3{

    color:var(--gold);

}


/* ===========================
   AGENDA / VISION CARDS
=========================== */

.agenda-card{
    position:relative;
    height:360px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    border-radius:18px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    transition:all .35s ease;
}

.agenda-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.18);
}

.agenda-overlay{
    width:100%;
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:20px;
    color:#fff;
}

.agenda-overlay.red{
    background:rgba(179,0,0,.78);
}

.agenda-overlay.dark{
    background:rgba(0,0,0,.72);
}

.agenda-icon{
    width:62px;
    height:62px;
    min-width:62px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:2px solid rgba(255,255,255,.85);
    border-radius:50%;
    color:#fff;
    font-size:28px;
    transition:.3s;
}

.agenda-card:hover .agenda-icon{
    background:#FFD700;
    color:#b30000;
    border-color:#FFD700;
}

.agenda-content{
    flex:1;
}

.agenda-content h3{
    margin:0 0 10px;
    color:#FFD700;
    font-size:1.2rem;
    line-height:1.3;
    font-weight:700;
}

.agenda-content p{
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.75;
    opacity:.95;
}


/*==================================================
VIDEO
==================================================*/

.video-container{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.video-container iframe{

    aspect-ratio:16/9;

}

/*=========================================
    PRIORITIES / AGENDA SECTION
=========================================*/

.priority-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
    margin-top:50px;
}

.priority-card{
    position:relative;
    height:520px;
    border-radius:22px;
    overflow:hidden;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.35s ease;
}

.priority-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.priority-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
}

.priority-overlay.red{
    background:linear-gradient(
        to top,
        rgba(45, 44, 44, 0.86),
        rgba(63, 61, 61, 0.62),
        rgba(0,0,0,.01)
    );
}

.priority-overlay.dark{
    background:linear-gradient(
        to top,
        rgba(18,18,18,.96),
        rgba(18,18,18,.75),
        rgba(0,0,0,.10)
    );
}

.priority-content{
    width:100%;
    padding:35px;
    color:#fff;
}

.priority-number{
    position:absolute;
    top:0;
    left:25px;

    width:62px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    font-weight:700;
    color:#fff;

    clip-path:polygon(
        0 0,
        100% 0,
        100% 80%,
        50% 100%,
        0 80%
    );
}

.priority-number.red{
    background:#820000;
}

.priority-number.dark{
    background:#222;
}

.priority-icon{
    width:70px;
    height:70px;

    margin:0 auto;

    border-radius:50%;
    border:4px solid rgba(255,255,255,.95);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:35px;
    color:#fff;

    transition:.35s;
}

.priority-card:hover .priority-icon{
    transform:rotate(8deg) scale(1.05);
}

.priority-title{
    margin:25px 0 15px;
    text-align:center;
    color:#FFD700;
    font-size:1.3rem;
    font-weight:700;
}

.priority-divider{
    width:90px;
    height:4px;
    margin:20px auto 30px;

    background:#FFD700;
    border-radius:50px;
}

.priority-list{
    list-style:none;
    padding:0;
    margin:0;
}

.priority-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    color:#fff;
    font-size:14px;
    line-height:0.8;
    margin-bottom:15px;
}

.priority-list i{
    color:#FFD700;
    font-size:14px;
    margin-top:6px;
    flex-shrink:0;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:992px){

.priority-grid{

grid-template-columns:1fr;

}

.priority-card{

height:560px;

}

}

@media(max-width:768px){

.priority-card{

height:520px;

}

.priority-content{

padding:25px;

}

.priority-icon{

width:85px;
height:85px;
font-size:38px;

}

.priority-title{

font-size:1.6rem;

}

.priority-list li{

font-size:15px;

}

}

@media(max-width:480px){

.priority-grid{

gap:25px;

}

.priority-card{

height:480px;

}

.priority-number{

width:52px;
height:76px;
font-size:28px;

}

.priority-icon{

width:75px;
height:75px;
font-size:34px;

}

.priority-title{

font-size:1.4rem;

}

.priority-list li{

font-size:14px;
line-height:1.7;

}

}

/* Gallery */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

/* Modal */
.image-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;

    background:rgba(0,0,0,.95);

    justify-content:center;
    align-items:center;

    padding:40px;
    overflow:auto;
}

.modal-content{

    display:block;

    width:auto;
    height:auto;

    max-width:95vw;
    max-height:90vh;

    object-fit:contain;

    border-radius:12px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    animation:zoomIn .35s ease;
}

.close-modal{

    position:fixed;
    top:20px;
    right:30px;

    color:#fff;
    font-size:55px;
    font-weight:bold;

    cursor:pointer;
    z-index:100000;

    transition:.3s;

}

.close-modal:hover{

    color:#FFD700;
    transform:rotate(90deg);

}

#caption{

    position:fixed;
    bottom:20px;
    left:50%;

    transform:translateX(-50%);

    color:#fff;
    text-align:center;

    width:90%;
    font-size:18px;

}

@keyframes zoomIn{

    from{
        transform:scale(.8);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

/* Animations */

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}


/* Mobile */

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-grid img{
    height:220px;
}

}

@media (max-width:768px){

    .image-modal{

        padding:15px;

    }

    .modal-content{

        max-width:100%;
        max-height:80vh;
        border-radius:8px;

    }

    .close-modal{

        top:10px;
        right:15px;
        font-size:40px;

    }

    #caption{

        font-size:15px;
        bottom:10px;
        width:95%;

    }

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{
    position:relative;
    padding:110px 6%;
    text-align:center;
    color:#fff;
    overflow:hidden;

    background:
    linear-gradient(rgba(120,0,0,.90), rgba(80,0,0,.88)),
    url('images/supporters.jpg') center center/cover no-repeat;
}

.cta-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
        rgba(255,215,0,.08),
        transparent 60%);
}

.cta-content{
    position:relative;
    max-width:900px;
    margin:auto;
    z-index:2;
}

.cta-content h2{
    font-size:clamp(2rem,5vw,3.4rem);
    color:#fff;
    margin-bottom:25px;
}

.cta-content p{
    font-size:18px;
    line-height:1.9;
    color:#f2f2f2;
    margin-bottom:45px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 42px;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.35s;
}

.btn-primary{

    background:#FFD700;
    color:#111;

}

.btn-primary:hover{

    background:#fff;
    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid #fff;
    color:#fff;

}

.btn-outline:hover{

    background:#fff;
    color:#b30000;

}


/*==================================================
FOOTER
==================================================*/

.footer{

    background:#111;
    color:#ddd;
    padding:80px 6% 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
    margin-bottom:60px;

}

.footer-logo{

    height:70px;
    margin-bottom:20px;

}

.footer h3,
.footer h4{

    color:#fff;
    margin-bottom:18px;

}

.footer h4{

    color:#FFD700;

}

.footer p{

    color:#aaa;
    line-height:1.9;
    margin-bottom:15px;

}

.footer-contact p{

    margin-bottom:18px;

}

.footer-contact strong{

    color:#fff;

}

.social-icons{

    display:flex;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;

}

.social-icons a{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#222;

    transition:.35s;

}

.social-icons img{

    width:22px;
    height:22px;

}

.social-icons a:hover{

    background:#FFD700;
    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid #2f2f2f;
    margin-top:20px;
    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

    color:#888;
    font-size:15px;

}

.footer-bottom a{

    color:#FFD700;
    text-decoration:none;
    font-weight:600;

}

.footer-bottom a:hover{

    color:#fff;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.cta-section{

padding:80px 25px;

}

.cta-content p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;
align-items:center;

}

.btn-primary,
.btn-outline{

width:100%;
max-width:320px;

}

.footer{

padding:60px 25px 20px;

}

.footer-grid{

grid-template-columns:1fr;
text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

.social-icons{

justify-content:center;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

}

@media(max-width:480px){

.cta-content h2{

font-size:2rem;

}

.cta-content p{

font-size:15px;

}

.btn-primary,
.btn-outline{

padding:15px 20px;

}

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

header{

    flex-wrap:wrap;

    gap:20px;

}

nav{

    gap:20px;

    flex-wrap:wrap;

}

.hero{

    min-height:auto;

    padding:120px 40px 80px;

}

section{

    padding:70px 0;

}

}


@media(max-width:768px){

.top-header{

    display:none;

}

header{

    flex-direction:column;

    text-align:center;

}

.logo{

    height:70px;

}

nav{

    flex-direction:column;

    gap:15px;

    margin:20px 0;

}

.hero{

    padding:120px 20px 80px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-btn,
.cta-btn{

    width:100%;

}

.grid-2,
.grid-3{

    grid-template-columns:1fr;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}


@media(max-width:480px){

body{

    font-size:15px;

}

.hero h1{

    font-size:2rem;

}

.hero h2{

    font-size:1.2rem;

}

.hero{

    padding:100px 18px 60px;

}

section{

    padding:55px 0;

}

}