/* =========================================
   ROOT
========================================= */

:root{

    --primary:#1d4ab7;
    --secondary:#d62828;
    --accent:#f0be37;

    --dark:#121212;
    --body:#5f6368;

    --white:#ffffff;

    --section-bg:#faf8f3;
    --section-bg-dark:#f5f1ea;

}

/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    position:relative;
}

.container{
    max-width:1320px;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Playfair Display',serif;
    font-weight:700;
    line-height:1.1;
}

/* =========================
   NAVBAR
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(0,0,0,.05);
}

.navbar-custom{
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:60px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:2rem;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu a{
    color:var(--dark);

    font-size:.85rem;
    font-weight:600;

    letter-spacing:.08em;
    text-transform:uppercase;

    position:relative;
}

.nav-menu a::after{
    content:"";

    position:absolute;
    bottom:-8px;
    left:0;

    width:0;
    height:2px;

    background:var(--secondary);

    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:1rem;
}

.live-indicator{
    display:flex;
    align-items:center;
    gap:.5rem;

    font-size:.8rem;
    font-weight:700;

    color:var(--secondary);
}

.live-indicator span{
    width:10px;
    height:10px;

    border-radius:50%;
    background:var(--secondary);

    animation:pulse 1.5s infinite;
}

.listen-live-btn{
    position:relative;

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #d62828 0%,
        #1d4ab7 100%
    );

    color:#fff;

    text-decoration:none;

    font-size:1rem;

    box-shadow:
        0 10px 25px rgba(29,74,183,.25);

    transition:.3s ease;

    z-index:2;
}

.listen-live-btn:hover{
    transform:scale(1.08);
}

.listen-live-btn i{
    margin-left:3px;
    position:relative;
    z-index:5;
}

/* Wave 1 */

.listen-live-btn::before{
    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(29,74,183,.35);

    animation:radioWave 2s infinite;
}

/* Wave 2 */

.listen-live-btn::after{
    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(214,40,40,.25);

    animation:radioWave 2s infinite .8s;
}
@keyframes radioWave{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    70%{
        opacity:.15;
    }

    100%{
        transform:scale(2.3);
        opacity:0;
    }

}

.menu-toggle{
    display:none;

    background:none;
    border:none;

    font-size:2rem;
    color:var(--dark);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.5);
        opacity:.5;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}



@media (max-width:991px){

    .nav-menu{
        display:none;
    }

    .listen-btn,
    .live-indicator{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo img{
        height:50px;
    }

}
@media(max-width:576px){

    .listen-live-btn{
        width:55px;
        height:55px;

        font-size:.85rem;
    }

    .listen-live-btn i{
        margin-left:2px;
    }

    .listen-live-btn::before,
    .listen-live-btn::after{
        border-width:1.5px;
    }

    @keyframes radioWave{

        0%{
            transform:scale(1);
            opacity:.7;
        }

        70%{
            opacity:.1;
        }

        100%{
            transform:scale(1.8);
            opacity:0;
        }

    }

}
/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{
    position:fixed;
    inset:0;

    background:#faf8f3;

    z-index:99999;

    padding:2rem;

    display:flex;
    flex-direction:column;

    transform:translateX(100%);
    transition:.5s ease;

    overflow-y:auto;
}

.mobile-menu.active{
    transform:translateX(0);
}

/* Close */

.mobile-close{
    position:absolute;

    top:25px;
    right:25px;

    background:none;
    border:none;

    color:#111;

    font-size:1.2rem;

    cursor:pointer;
}

/* Brand */

.mobile-brand{
    margin-top:1rem;
    margin-bottom:3rem;
}

.mobile-brand img{
    width:130px;

    margin-bottom:.75rem;
}

.mobile-brand span{
    display:block;

    color:#777;

    font-size:.7rem;
    font-weight:600;

    letter-spacing:.2em;
    text-transform:uppercase;
}

/* Navigation */

.mobile-nav-links{
    list-style:none;

    padding:0;
    margin:0;
}

.mobile-nav-links li{
    margin-bottom:.75rem;
}

.mobile-nav-links a{
    display:inline-block;

    color:#111;

    font-size:clamp(2rem,7vw,2.75rem);
    font-weight:700;

    line-height:1.05;

    text-decoration:none;

    transition:.3s ease;
}

.mobile-nav-links a:hover{
    color:#b71c1c;

    transform:translateX(8px);
}

/* Bottom */

.mobile-menu-bottom{
    margin-top:auto;

    padding-top:2rem;

    border-top:1px solid rgba(0,0,0,.08);
}

/* Live */

.mobile-live{
    display:inline-flex;
    align-items:center;

    gap:.75rem;

    color:#111;

    text-decoration:none;

    font-weight:600;

    margin-bottom:1.5rem;
}

.live-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#d62828;

    animation:liveBlink 1.5s infinite;
}

@keyframes liveBlink{

    0%,100%{
        opacity:1;
    }

    50%{
        opacity:.3;
    }

}

/* Social */

.mobile-socials{
    display:flex;
    gap:.75rem;

    margin-bottom:1.5rem;
}

.mobile-socials a{
    width:42px;
    height:42px;

    border:1px solid rgba(0,0,0,.08);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;

    transition:.3s ease;
}

.mobile-socials a:hover{
    background:#111;

    color:#fff;

    transform:translateY(-3px);
}

/* Footer */

.mobile-footer-text{
    color:#999;

    font-size:.75rem;

    letter-spacing:.12em;
    text-transform:uppercase;
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:576px){

    .mobile-menu{
        padding:1.5rem;
    }

    .mobile-brand{
        margin-bottom:2.5rem;
    }

    .mobile-brand img{
        width:110px;
    }

    .mobile-nav-links a{
        font-size:1.8rem;
    }

    .mobile-socials a{
        width:38px;
        height:38px;
    }

}
.section-kicker{
    display:inline-block;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:.18em;

    text-transform:uppercase;

    color:var(--secondary);

    margin-bottom:1rem;
}

/* =========================================
   PAGE BANNER
========================================= */

.page-banner{
    position:relative;

    height:420px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;
}

.page-banner-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:8s ease;
}

.page-banner:hover .page-banner-bg{
    transform:scale(1.05);
}

.page-banner-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.75) 100%
    );
}

.page-banner-content{
    position:relative;
    z-index:2;

    max-width:850px;

    padding-bottom:70px;

    color:#fff;
}

.page-banner .section-kicker{
    display:inline-block;

    margin-bottom:1rem;

    color:#f0be37;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;
}

.page-banner h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:.95;

    margin-bottom:1rem;
}

.page-banner p{
    max-width:700px;

    font-size:1.05rem;
    line-height:1.9;

    color:rgba(255,255,255,.88);
}


/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .page-banner{
        height:360px;
    }

    .page-banner-content{
        padding-bottom:50px;
    }

    .page-banner h1{
        font-size:3.5rem;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .page-banner{
        height:340px;
        min-height:auto;
    }

    .page-banner-content{
        padding-bottom:30px;
    }

    .page-banner .section-kicker{
        font-size:.72rem;
        letter-spacing:.15em;
    }

    .page-banner h1{
        font-size:2.4rem;
        line-height:1;
        margin-bottom:.75rem;
    }

    .page-banner p{
        font-size:.95rem;
        line-height:1.7;
        max-width:100%;
    }

}

/* =========================================
   FILTERS
========================================= */

.media-filter-section{
    padding:20px 0 80px;
}

.media-filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.75rem;
}

.media-filters button{
    border:none;

    padding:.85rem 1.4rem;

    border-radius:999px;

    background:#fff;

    color:var(--dark);

    font-size:.85rem;
    font-weight:600;



    transition:.35s ease;

    cursor:pointer;
}

.media-filters button:hover{
    transform:translateY(-3px);


}

.media-filters button.active{
    background:var(--primary);
    color:#fff;

 
}

/* =========================================
   MEDIA GRID
========================================= */

.media-gallery{
    padding-bottom:100px;
}

.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.media-card{
    display:block;

    color:inherit;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.media-card:hover{
    transform:translateY(-8px);
}

.media-image{
    overflow:hidden;
    border-radius:28px;
}

.media-image img{
    width:100%;
    height:340px;

    object-fit:cover;

    border-radius:28px;

    transition:1s ease;
}

.media-card:hover img{
    transform:scale(1.08);
}

.media-content{
    padding-top:1.2rem;
}

.media-content span{
    display:inline-block;

    margin-bottom:.75rem;

    font-size:.75rem;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    color:var(--secondary);
}

.media-content h3{
    font-size:1.25rem;
    line-height:1.5;
}

/* Hidden Cards */

.media-card.hidden{
    display:none;
}

/* =========================================
   LOAD MORE
========================================= */

.media-load-more{
    text-align:center;
    padding-bottom:120px;
}

.media-btn{
    border:none;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:1rem 2rem;

    border-radius:999px;

    background:var(--primary);
    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.35s ease;
}

.media-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(29,74,183,.20);
}

/* =========================================
   LIGHTBOX
========================================= */

.media-lightbox-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:99999;
}

.media-lightbox-overlay.active{
    opacity:1;
    visibility:visible;
}

.media-lightbox-overlay img{
    max-width:90%;
    max-height:90vh;

    border-radius:20px;

    object-fit:contain;
}

.lightbox-close{
    position:absolute;

    top:30px;
    right:30px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:1.2rem;

    transition:.3s ease;
}

.lightbox-close:hover{
    transform:rotate(90deg);
}
/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .media-filter-section{
        padding:15px 0 70px;
    }

    .media-grid{
        grid-template-columns:repeat(2,1fr);
        gap:1.75rem;
    }

    .media-image img{
        height:300px;
    }

    .media-content h3{
        font-size:1.15rem;
    }

    .media-gallery{
        padding-bottom:100px;
    }

    .media-load-more{
        padding-bottom:100px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .media-filter-section{
        padding:10px 0 50px;
    }

    .media-filters{
        justify-content:flex-start;
        flex-wrap:nowrap;

        overflow-x:auto;
        overflow-y:hidden;

        gap:.75rem;

        padding:0 .25rem .5rem;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .media-filters::-webkit-scrollbar{
        display:none;
    }

    .media-filters button{
        flex-shrink:0;

        padding:.8rem 1.25rem;

        font-size:.8rem;
    }

    .media-grid{
        grid-template-columns:1fr;
        gap:2rem;
    }

    .media-image{
        border-radius:22px;
    }

    .media-image img{
        height:250px;
        border-radius:22px;
    }

    .media-content{
        padding-top:1rem;
    }

    .media-content h3{
        font-size:1.05rem;
        line-height:1.45;
    }

    .media-gallery{
        padding-bottom:70px;
    }

    .media-load-more{
        padding-bottom:70px;
    }

    .media-btn{
        width:100%;
        max-width:280px;
    }

    .lightbox-close{
        top:16px;
        right:16px;

        width:44px;
        height:44px;
    }

    .media-lightbox-overlay img{
        max-width:94%;
        max-height:80vh;
    }

}

/* =========================================
   CTA
========================================= */

.media-cta{
    padding-bottom:140px;
}

.media-cta-box{
    background:
    linear-gradient(
        135deg,
        #1d4ab7,
        #143a92
    );

    color:#fff;

    border-radius:40px;

    text-align:center;

    padding:90px 60px;
}

.media-cta-box .section-kicker{
    color:#f0be37;
}

.media-cta-box h2{
    font-size:clamp(2.5rem,5vw,4rem);

    margin-bottom:1rem;
}

.media-cta-box p{
    max-width:650px;

    margin:0 auto 2rem;

    line-height:2;

    color:rgba(255,255,255,.85);
}

.cta-btn{
    display:inline-flex;

    padding:1rem 2rem;

    border-radius:999px;

    background:#fff;
    color:var(--primary);

    font-weight:700;
}


