/*====================================================
                HERO SECTION
====================================================*/

/*==============================
        IMAGE BAND

    Each slide fades to transparent at
    its own top and bottom edge (via a
    mask), so it dissolves into the
    section's background color in both
    directions — no hard seam.

    These are now the PLAIN photos
    (no text baked in). All copy is
    rendered separately in .hero-captions
    below, so it can be styled, animated
    and made responsive with real HTML/CSS.
==============================*/

.hero{

    position:relative;

    height:680px;

    overflow:hidden;

    background:#050816;

}

.hero-slider{

    position:absolute;

    inset:0;

    z-index:0;

    overflow:hidden;

}

.hero-slide{

    position:absolute;

    inset:0;

    margin-top:60px;

    background-size:cover;

    background-repeat:no-repeat;

    opacity:0;

    transition:opacity 1.2s ease-in-out;

    will-change:opacity;

    -webkit-mask-image:linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 55%,
        transparent 100%
    );

    mask-image:linear-gradient(
        to bottom,
        transparent 0%,
        black 15%,
        black 55%,
        transparent 100%
    );

}

.hero-slide.active{

    opacity:1;

}

/* Plain (no-text) source photos.
   Tune the two background-position values per image:
   first = horizontal, second = vertical. */

.hero-slide:nth-child(1){

    background-image:url("../images/slider_image_2_copy.jpeg");

    background-position:78% 30%;

}

.hero-slide:nth-child(2){

    background-image:url("../images/Slider_image_1_copy.jpeg");

    background-position:78% 25%;

}

.hero-slide:nth-child(3){

    background-image:url("../images/Slider_image_3_copy.jpeg");

    background-position:22% 35%;

}

.hero-slide:nth-child(4){

    background-image:url("../images/Slider_image_4_copy.jpeg");

    background-position:22% 35%;

}

/* soft overall tint + bottom fade into the content section */

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(rgba(5,8,22,.15), rgba(5,8,22,.25)),
        linear-gradient(
            to bottom,
            rgba(5,8,22,0) 55%,
            rgba(5,8,22,.75) 88%,
            #050816 100%
        );

    z-index:1;

    pointer-events:none;

}

/*==============================
        CAPTIONS (text layer)

    Sits ABOVE the darkening overlay
    (z-index higher than .hero::after)
    so text always stays crisp no
    matter how the photo is tinted.
    One caption per slide; only the
    .active one is visible, fading
    and rising in slightly after its
    photo appears.
==============================*/

.hero-captions{

    position:absolute;

    inset:0;

    z-index:2;

    margin-top:60px;

    pointer-events:none;

}

.hero-caption{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    opacity:0;

    transform:translateY(16px);

    transition:opacity .9s ease, transform .9s ease;

    pointer-events:none;

}

.hero-caption.active{

    opacity:1;

    transform:translateY(0);

    transition-delay:.35s;

    pointer-events:auto;

}

.cap-left{

    justify-content:flex-start;

}

.cap-right{

    justify-content:flex-end;

}

.cap-inner{

    max-width:520px;

    padding:32px 34px;

    margin:0 4%;

    background:rgba(5,8,22,.38);

    border:1px solid rgba(255,255,255,.1);

    border-radius:18px;

    backdrop-filter:blur(6px);

    -webkit-backdrop-filter:blur(6px);

}

.cap-right .cap-inner{

    text-align:right;

}

.cap-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#d4af37;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:14px;

}

.cap-title{

    font-family:'Poppins',sans-serif;

    font-weight:800;

    color:#fff;

    font-size:clamp(24px, 3.4vw, 40px);

    line-height:1.18;

    margin-bottom:16px;

}

.cap-title span{

    background:linear-gradient(90deg, #ffffff, #d4af37);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.cap-quote{

    font-style:italic;

    color:#e3e6f5;

    font-size:clamp(14px, 1.6vw, 18px);

    line-height:1.65;

    margin-bottom:10px;

}

.cap-ref{

    display:block;

    color:#d4af37;

    font-weight:700;

    letter-spacing:.5px;

    font-size:clamp(13px, 1.2vw, 15px);

    margin-bottom:18px;

}

.cap-tags{

    color:#b9bfd6;

    font-size:clamp(11px, 1.05vw, 13.5px);

    letter-spacing:.3px;

    margin:0;

}

/* Scroll Icon */

.scroll-down{

    position:absolute;

    left:50%;

    bottom:26px;

    transform:translateX(-50%);

    font-size:26px;

    color:white;

    animation:bounce 2s infinite;

    z-index:3;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

/*==============================
        SLIDER CONTROLS
==============================*/

.hero-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    z-index:4;

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.hero-arrow:hover{

    background:rgba(255,255,255,.18);

}

.hero-arrow.prev{

    left:22px;

}

.hero-arrow.next{

    right:22px;

}

.hero-dots{

    position:absolute;

    bottom:56px;

    left:50%;

    transform:translateX(-50%);

    z-index:4;

    display:flex;

    gap:10px;

}

.hero-dot{

    width:9px;

    height:9px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    cursor:pointer;

    transition:.3s;

}

.hero-dot.active{

    background:#d4af37;

    transform:scale(1.3);

}

/*==============================
        HERO CONTENT
==============================*/

.hero-content{

    position:relative;

    background:#050816;

    padding:90px 0 100px;

}

.hero-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:0 20px;

}

.hero-small{

    position:relative;

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:#d4af37;

    font-size:16px;

    font-weight:700;

    letter-spacing:5px;

    margin-bottom:22px;

}

.hero-small::before,
.hero-small::after{

    content:"";

    width:28px;

    height:2px;

    background:#d4af37;

    opacity:.6;

    border-radius:2px;

}

.hero-title{

    font-family:'Poppins',sans-serif;

    font-size:68px;

    font-weight:800;

    line-height:1.12;

    color:#fff;

    margin-bottom:28px;

}

.hero-title span{

    background:linear-gradient(90deg, #ffffff, #d4af37);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    max-width:700px;

    margin:auto;

    font-size:20px;

    color:#c7cbdc;

    line-height:1.85;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.glass-btn{

    padding:16px 36px;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.18);

    color:white;

    font-weight:600;

    transition:.35s;

}

.glass-btn:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.12);

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.gold-btn{

    padding:16px 36px;

    border-radius:50px;

    background:#d4af37;

    color:#111;

    font-weight:700;

    transition:.35s;

}

.gold-btn:hover{

    transform:translateY(-6px);

    background:#e6c04a;

    box-shadow:0 18px 40px rgba(212,175,55,.45);

}

.hero-verse{

    margin-top:50px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.08);

    font-size:17px;

    color:#f5f5f5;

    opacity:.9;

}

.hero-verse small{

    display:block;

    margin-top:10px;

    color:#a9aec4;

    font-size:15px;

    line-height:1.8;

}

/*==========================
        MOTION PREFERENCE
===========================*/

@media (prefers-reduced-motion: reduce){

    .hero-slide,
    .hero-caption{

        transition:none !important;

    }

    .scroll-down{

        animation:none !important;

    }

}

/*==========================
        TABLET
===========================*/

@media(max-width:991px){

.hero{

height:600px;

}

.cap-inner{

max-width:60%;

padding:26px 26px;

}

.hero-content{

padding:70px 0 80px;

}

.hero-title{

font-size:48px;

}

.hero-text{

font-size:18px;

}

}

/*==========================
        MOBILE

    Below this width the empty side
    of each photo is too narrow for a
    half-width caption, so the caption
    becomes a centered glass card that
    sits over the full image — legible
    against any of the four photos.
===========================*/

@media(max-width:768px){

.hero{

height:560px;

}

.hero-slide{

margin-top:44px;

}

.hero-captions{

margin-top:44px;

}

.hero-caption,
.cap-left,
.cap-right{

justify-content:center;

}

.cap-inner,
.cap-right .cap-inner{

max-width:88%;

margin:0 auto;

padding:22px 22px;

text-align:center;

background:rgba(5,8,22,.55);

}

.cap-eyebrow{

font-size:11px;

letter-spacing:2px;

margin-bottom:10px;

}

.cap-tags{

display:none;

}

.hero-content{

padding:55px 0 60px;

}

.hero-title{

font-size:36px;

}

.hero-small{

font-size:13px;

letter-spacing:3px;

}

.hero-small::before,
.hero-small::after{

width:18px;

}

.hero-text{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.glass-btn,
.gold-btn{

width:100%;

text-align:center;

}

.hero-verse{

font-size:15px;

}

.hero-arrow{

width:36px;

height:36px;

}

.hero-arrow.prev{

left:10px;

}

.hero-arrow.next{

right:10px;

}

.hero-dots{

bottom:40px;

}

}

@media(max-width:420px){

.hero{

height:520px;

}

.cap-quote{

display:none;

}

.cap-title{

font-size:22px;

}

}

/*====================================================
                UNITY WITH GOD SECTION
    Add this file to your <head>:
    <link rel="stylesheet" href="css/unity.css">
====================================================*/

.unity-section{

    background:#050816;

    padding:20px 0 100px;

}

.unity-heading{

    font-family:'Poppins',sans-serif;

    font-weight:800;

    font-size:clamp(28px, 3.6vw, 42px);

    color:#050816;

    background:#fff;

    display:inline-block;

    text-align:center;

    width:100%;

    margin-bottom:50px;

}

/* Heading sits on the dark section, so make it light */
.unity-heading{

    color:#fff;

    background:none;

}

.unity-heading span{

    background:linear-gradient(90deg, #ffffff, #d4af37);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.unity-heading{

    text-align:center;

}

.unity-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:46px;

}

.unity-card{

    display:block;

    text-decoration:none;

    border-radius:16px;

    overflow:hidden;

    background:#0c1024;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    transition:transform .35s ease, box-shadow .35s ease;

}

.unity-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(212,175,55,.25);

}

.unity-img{

    width:100%;

    background:#141936; /* fills any letterbox space around the flyer */

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.unity-img img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

}

.unity-label{

    background:#fff;

    padding:22px 18px;

    text-align:center;

}

.unity-label h5{

    font-family:'Inter',sans-serif;

    font-weight:600;

    font-size:16px;

    color:#3a3f55;

    margin-bottom:10px;

}

.unity-underline{

    display:inline-block;

    width:34px;

    height:3px;

    border-radius:3px;

    background:#d4af37;

}

/*==========================
        TABLET
===========================*/

@media(max-width:991px){

.unity-grid{

grid-template-columns:repeat(3, 1fr);

}

.unity-section{

padding:10px 0 80px;

}

}

/*==========================
        MOBILE
===========================*/

@media(max-width:576px){

.unity-grid{

grid-template-columns:repeat(2, 1fr);

gap:16px;

}

.unity-label{

padding:16px 12px;

}

.unity-label h5{

font-size:14px;

}

}



/*====================================================
        NEW COVENANT SECTION — REDESIGN
====================================================*/

.covenant-section{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:
    radial-gradient(circle at 20% 20%,rgba(40,130,255,.18),transparent 40%),
    radial-gradient(circle at 80% 0%,rgba(212,175,55,.12),transparent 35%),
    linear-gradient(180deg,#040816 0%,#071225 55%,#050816 100%);
}

.covenant-section::before,
.covenant-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.35;
    pointer-events:none;
}

.covenant-section::before{
    width:340px;
    height:340px;
    background:#1f6fff;
    top:-120px;
    right:-120px;
}

.covenant-section::after{
    width:260px;
    height:260px;
    background:#d4af37;
    bottom:-90px;
    left:-70px;
}

.covenant-title{
    position:relative;
    display:inline-block;
    color:#fff;
    font-size:clamp(32px,3vw,44px);
    font-weight:800;
    font-family:'Poppins',sans-serif;
    margin-bottom:35px;
    letter-spacing:.5px;
}

.covenant-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:80px;
    height:4px;
    border-radius:10px;
    background:linear-gradient(90deg,#d4af37,#f8dd7f);
}

.covenant-text{
    color:#d8dff1;
    font-size:17px;
    line-height:1.95;
    margin-bottom:22px;
}

.covenant-text strong{
    color:#fff;
    font-weight:700;
}

.covenant-vision{
    margin-top:28px;
    padding-left:22px;
    border-left:4px solid #d4af37;
    color:#cfd5e6;
    font-size:17px;
    line-height:1.9;
    font-style:italic;
}

/*=========================
    TESTIMONY REEL (video)
=========================*/

.testimony-reel{
    max-width:640px;
}

.testimony-frame{
    position:relative;
    aspect-ratio:16/9;
    border-radius:20px;
    overflow:hidden;
    background:#000;
    box-shadow:0 25px 60px rgba(0,0,0,.5);
}

/* corner brackets — a viewfinder, framing this as a captured moment */

.reel-corner{
    position:absolute;
    width:26px;
    height:26px;
    z-index:5;
    pointer-events:none;
    opacity:.85;
    transition:opacity .4s ease, width .4s ease, height .4s ease;
}

.reel-corner.tl{ top:14px; left:14px; border-top:2px solid #d4af37; border-left:2px solid #d4af37; border-radius:6px 0 0 0; }
.reel-corner.tr{ top:14px; right:14px; border-top:2px solid #d4af37; border-right:2px solid #d4af37; border-radius:0 6px 0 0; }
.reel-corner.bl{ bottom:14px; left:14px; border-bottom:2px solid #d4af37; border-left:2px solid #d4af37; border-radius:0 0 0 6px; }
.reel-corner.br{ bottom:14px; right:14px; border-bottom:2px solid #d4af37; border-right:2px solid #d4af37; border-radius:0 0 6px 0; }

.testimony-frame:hover .reel-corner{
    width:34px;
    height:34px;
    opacity:1;
}

.testimony-media{
    position:absolute;
    inset:0;
}

.testimony-media iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/*=========================
        POSTER STATE
=========================*/

.testimony-poster{
    position:absolute;
    inset:0;
    z-index:3;
    cursor:pointer;
    background:none;
    border:0;
    padding:0;
}

.testimony-thumb{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease, filter .8s ease;
}

.testimony-poster::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(3,7,18,.75), rgba(3,7,18,.1) 55%);
}

.testimony-frame:hover .testimony-thumb{
    transform:scale(1.05);
    filter:brightness(.85);
}

.testimony-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:76px;
    height:76px;
    border-radius:50%;
    border:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(145deg,#f7d96c,#d4af37);
    color:#111;
    font-size:24px;
    box-shadow:0 14px 35px rgba(0,0,0,.5);
    transition:transform .35s ease, box-shadow .35s ease;
    cursor:pointer;
}

.testimony-play::before{
    content:"";
    position:absolute;
    inset:-14px;
    border-radius:50%;
    border:2px solid rgba(212,175,55,.45);
    animation:pulseGlow 2.6s infinite;
}

.testimony-frame:hover .testimony-play{
    transform:translate(-50%,-50%) scale(1.08);
    box-shadow:0 18px 45px rgba(212,175,55,.35);
}

.testimony-poster.is-hidden{
    opacity:0;
    pointer-events:none;
    transition:opacity .4s ease;
}

/*=========================
    CUSTOM CONTROL BAR
=========================*/

.testimony-controlbar{
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:4;
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 14px;
    border-radius:14px;
    background:rgba(4,8,22,.55);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    opacity:0;
    transform:translateY(10px);
    pointer-events:none;
    transition:opacity .35s ease, transform .35s ease;
}

.testimony-controlbar.is-visible{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.tc-btn{
    flex:0 0 auto;
    width:32px;
    height:32px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    cursor:pointer;
    transition:background .3s ease;
}

.tc-btn:hover{
    background:rgba(212,175,55,.35);
}

.tc-time{
    flex:0 0 auto;
    color:#e5e8f5;
    font-size:12px;
    font-variant-numeric:tabular-nums;
    min-width:34px;
}

.tc-progress{
    position:relative;
    flex:1 1 auto;
    height:14px;
    display:flex;
    align-items:center;
    cursor:pointer;
}

.tc-progress::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:4px;
    border-radius:4px;
    background:rgba(255,255,255,.18);
}

.tc-progress-fill{
    position:absolute;
    left:0;
    height:4px;
    width:0%;
    border-radius:4px;
    background:linear-gradient(90deg,#d4af37,#f8dd7f);
    pointer-events:none;
}

.tc-progress-handle{
    position:absolute;
    left:0%;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 0 3px rgba(212,175,55,.4);
    transform:translateX(-50%);
    pointer-events:none;
    transition:box-shadow .2s ease;
}

/*=========================
        META BLOCK
=========================*/

.testimony-meta{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:22px;
}

.testimony-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 14px;
    border-radius:50px;
    background:rgba(212,175,55,.14);
    border:1px solid rgba(212,175,55,.35);
    color:#f8dd7f;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.testimony-name{
    width:100%;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:20px;
    margin:6px 0 2px;
}

.testimony-sub{
    width:100%;
    color:#9ba2bc;
    font-size:14.5px;
    margin:0;
}

/*=========================
        ANIMATION
=========================*/

@keyframes pulseGlow{
    0%{ transform:scale(.8); opacity:.7; }
    70%{ transform:scale(1.3); opacity:0; }
    100%{ transform:scale(1.3); opacity:0; }
}

@media (prefers-reduced-motion: reduce){
    .testimony-play::before{ animation:none; }
}

/*=========================
        TABLET
=========================*/

@media(max-width:992px){

.covenant-section{ padding:80px 0; }

}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){

.covenant-section{ padding:65px 0; }

.covenant-title{ font-size:30px; }

.covenant-text{ font-size:16px; }

.testimony-play{ width:60px; height:60px; font-size:18px; }

.testimony-controlbar{ left:10px; right:10px; bottom:10px; padding:8px 10px; gap:8px; }

.tc-time{ font-size:11px; min-width:28px; }

.testimony-name{ font-size:18px; }

}


/*====================================================
        BOOK SECTION — 25 POWERFUL SERMONS
====================================================*/

.book-section{
    position:relative;
    overflow:hidden;
    background:#050816;
    padding:100px 0 110px;
}

.book-section::before,
.book-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.3;
    pointer-events:none;
}

.book-section::before{
    width:300px;
    height:300px;
    background:#d4af37;
    top:-100px;
    left:-90px;
}

.book-section::after{
    width:280px;
    height:280px;
    background:#1f6fff;
    bottom:-110px;
    right:-100px;
}

.book-heading{
    position:relative;
    text-align:center;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(26px,3vw,36px);
    color:#fff;
    margin-bottom:55px;
    letter-spacing:.3px;
}

.book-heading span{
    background:linear-gradient(90deg,#f8dd7f,#d4af37);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/*=========================
        SHOWCASE
=========================*/

.book-showcase{
    position:relative;
    max-width:620px;
    margin:0 auto;
    perspective:1400px;
}

.book-image{
    display:block;
    width:100%;
    border-radius:8px;
    box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06);
    transform:rotateY(0deg) rotateX(0deg);
    transition:transform .5s ease, box-shadow .5s ease;
    will-change:transform;
}

.book-showcase:hover .book-image{
    box-shadow:
    0 40px 90px rgba(0,0,0,.65),
    0 0 40px rgba(212,175,55,.18),
    0 0 0 1px rgba(212,175,55,.3);
}

/* JS sets --ry / --rx on mousemove for the tilt-in-hand effect */

.book-showcase.has-tilt .book-image{
    transform:rotateY(var(--ry,0deg)) rotateX(var(--rx,0deg));
}

@media (prefers-reduced-motion: reduce){
    .book-image{
        transition:none;
    }
}

/*=========================
        CTA
=========================*/

.book-cta-wrap{
    position:relative;
    display:flex;
    justify-content:center;
    margin-top:48px;
}

.book-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    border-radius:50px;
    background:#d4af37;
    color:#111;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    transition:.35s;
}

.book-cta i{
    font-size:13px;
    transition:transform .35s ease;
}

.book-cta:hover{
    background:#e6c04a;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(212,175,55,.4);
}

.book-cta:hover i{
    transform:translateX(4px);
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){

.book-section{
    padding:80px 0 90px;
}

.book-heading{
    margin-bottom:40px;
}

}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){

.book-section{
    padding:65px 0 70px;
}

.book-heading{
    font-size:24px;
    margin-bottom:32px;
}

.book-showcase{
    max-width:100%;
}

.book-cta{
    padding:13px 28px;
    font-size:14px;
}

}



/*====================================================
        YOUTUBE CHANNEL SECTION
====================================================*/

.channel-section{
    position:relative;
    overflow:hidden;
    background:#050816;
    padding:100px 0 110px;
}

.channel-section::before,
.channel-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.3;
    pointer-events:none;
}

.channel-section::before{
    width:300px;
    height:300px;
    background:#d4af37;
    top:-100px;
    right:-90px;
}

.channel-section::after{
    width:280px;
    height:280px;
    background:#1f6fff;
    bottom:-110px;
    left:-100px;
}

/*=========================
        HEADER
=========================*/

.channel-header{
    position:relative;
    text-align:center;
    max-width:640px;
    margin:0 auto 55px;
}

.channel-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 16px;
    border-radius:50px;
    background:rgba(255,0,0,.1);
    border:1px solid rgba(255,60,60,.3);
    color:#ff5b5b;
    font-size:13px;
    font-weight:700;
    letter-spacing:.3px;
    margin-bottom:20px;
}

.channel-heading{
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(26px,3vw,38px);
    color:#fff;
    margin-bottom:16px;
}

.channel-heading span{
    background:linear-gradient(90deg,#f8dd7f,#d4af37);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.channel-sub{
    color:#c7cbdc;
    font-size:16.5px;
    line-height:1.8;
    margin-bottom:26px;
}

.channel-subscribe{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    border-radius:50px;
    background:#ff0000;
    color:#fff;
    font-weight:700;
    font-size:14.5px;
    text-decoration:none;
    transition:.35s;
}

.channel-subscribe:hover{
    background:#e60000;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(255,0,0,.3);
    color:#fff;
}

/*=========================
        GRID
=========================*/

.channel-grid{
    position:relative;
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:28px;
    align-items:stretch;
}

/*=========================
        UPLOADS CARD
=========================*/

.channel-uploads{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:20px;
    backdrop-filter:blur(10px);
}

.channel-card-label{
    display:flex;
    align-items:center;
    gap:8px;
    color:#d4af37;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.channel-uploads-frame{
    position:relative;
    aspect-ratio:16/9;
    border-radius:14px;
    overflow:hidden;
    background:#000;
}

.channel-uploads-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/*=========================
        LIVE CARD
=========================*/

.channel-live{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-decoration:none;
    border-radius:20px;
    padding:32px 28px;
    background:
    radial-gradient(circle at 80% 0%,rgba(255,40,40,.14),transparent 55%),
    rgba(255,255,255,.03);
    border:1px solid rgba(255,80,80,.2);
    transition:transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.channel-live:hover{
    transform:translateY(-6px);
    border-color:rgba(255,80,80,.45);
    box-shadow:0 25px 50px rgba(0,0,0,.4);
}

.channel-live-top{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
}

.live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#ff3b3b;
    box-shadow:0 0 0 rgba(255,59,59,.5);
    animation:liveDot 1.8s infinite;
}

.channel-live-tag{
    color:#ff5b5b;
    font-size:12.5px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.channel-live-title{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:20px;
    margin-bottom:10px;
}

.channel-live-sub{
    color:#a9aec4;
    font-size:14.5px;
    line-height:1.75;
    margin-bottom:22px;
}

.channel-live-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#f8dd7f;
    font-weight:700;
    font-size:14px;
}

.channel-live-cta i{
    font-size:12px;
    transition:transform .35s ease;
}

.channel-live:hover .channel-live-cta i{
    transform:translateX(4px);
}

@keyframes liveDot{
    0%{ box-shadow:0 0 0 0 rgba(255,59,59,.5); }
    70%{ box-shadow:0 0 0 10px rgba(255,59,59,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,59,59,0); }
}

@media (prefers-reduced-motion: reduce){
    .live-dot{ animation:none; }
}

/*=========================
        FOOTER CTA
=========================*/

.channel-footer-cta{
    text-align:center;
    margin-top:36px;
}

.channel-footer-cta a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#c7cbdc;
    font-size:14.5px;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,.25);
    padding-bottom:2px;
    transition:.3s;
}

.channel-footer-cta a:hover{
    color:#d4af37;
    border-color:#d4af37;
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){

.channel-section{
    padding:80px 0 90px;
}

.channel-grid{
    grid-template-columns:1fr;
}

}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){

.channel-section{
    padding:65px 0 70px;
}

.channel-heading{
    font-size:24px;
}

.channel-uploads{
    padding:14px;
}

.channel-live{
    padding:26px 22px;
}

}