/* ======================================
   Nelson Edeh Personal Website
====================================== */

:root{

    --accent:#9A5A24;

    --text:#171717;

    --muted:#6B6B6B;

    --border:#EBEBEB;

    --bg:#F8F8F7;

    --white:#FFFFFF;

    --footer:#111111;

    --container:1280px;

}

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

/* ===== DEBUG OVERFLOW ===== */

/* *{
    outline:1px solid red !important;
} */

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;
    color:var(--text);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;

    background:var(--bg);

    overflow-x:hidden;

}

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

.channel img,
.film-image img,
.profile{

    max-width:100%;

}

a{
    text-decoration:none;
    color:inherit;
    transition:.25s;
}

.container{
    width:min(var(--container),95%);
    margin:auto;
    position:relative;
    z-index:2;

}


/* ================= AMBIENT BACKGROUND ================= */

body::before{

    content:"";

    position:fixed;

    top:-250px;
    left:-180px;

    width:550px;
    height:550px;

    background:radial-gradient(circle,

            rgba(0,0,0,.025),

            transparent 72%);

    pointer-events:none;

    z-index:0;

}

body::after{

    content:"";

    position:fixed;

    bottom:-280px;
    right:-180px;

    width:600px;
    height:600px;

    background:radial-gradient(circle,

        rgba(154,90,36,.035),

        transparent 75%);

    pointer-events:none;

    z-index:0;

}

.container,
footer{

    position:relative;
    z-index:2;

}



/* ================= HERO ================= */

.hero{

    text-align:center;

    padding:60px 0 35px;

    position:relative;

}

.profile{

    width:200px;
    height:200px;

    border-radius:50%;

    object-fit:cover;

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

    box-shadow:

0 10px 30px rgba(0,0,0,.06),

0 40px 90px rgba(0,0,0,.05);

    margin:auto auto 24px;

}



.hero::before{

content:"";

position:absolute;

left:50%;

top:0;

transform:translateX(-50%);

width:380px;

height:380px;

background:radial-gradient(circle,

rgba(154,90,36,.05),

transparent 72%);

filter:blur(30px);

z-index:-1;

}

.hero h1{

font-size:68px;

font-weight:700;

letter-spacing:-4px;

line-height:.9;

}

.roles{

font-size:16px;

font-weight:500;

color:#7B7B7B;

}

/* New: credibility line under the tagline */
.hero-subline{

    font-size:14px;

    font-weight:600;

    color:var(--accent);

    letter-spacing:.2px;

    margin-top:10px;

}


.hero-email{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-top:18px;

    margin-bottom:22px;

    font-size:16px;

    color:#555;

}

.hero-email i{

    font-size:15px;

    color:var(--accent);

}

.hero-email a{

    color:#444;

    transition:.25s;

    border-bottom:1px solid transparent;

}

.hero-email a:hover{

    color:var(--accent);

    border-color:var(--accent);

}


/* New: primary CTA buttons — used in the hero and in .final-cta */

.hero-cta{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    margin-bottom:28px;

    flex-wrap:nowrap;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    letter-spacing:.2px;

    transition:.3s ease;

    border:1px solid transparent;
    white-space:nowrap;

}

.btn-primary{

    background:linear-gradient(90deg,var(--accent),#c17a3f);

    color:#fff;

    box-shadow:0 8px 22px rgba(154,90,36,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 14px 30px rgba(154,90,36,.32);

}

.btn-secondary{

    background:transparent;

    color:var(--text);

    border-color:rgba(0,0,0,.14);

}

.btn-secondary:hover{

    transform:translateY(-3px);

    border-color:var(--accent);

    color:var(--accent);

}


.social-icons{

    display:flex;

    justify-content:center;

    gap:22px;

}

.social-icons a{

    font-size:28px;

    transition:.35s;

}

.social-icons a:hover{

    transform:

        translateY(-5px)

        rotate(-8deg)

        scale(1.1);

}

/* Brand Colors — order matches the icon sequence in index.html:
   1 YouTube, 2 Instagram, 3 TikTok, 4 Facebook, 5 X, 6 LinkedIn */

.social-icons a:nth-child(1){

    color:#FF0000; /* YouTube */

}

.social-icons a:nth-child(2){

    color:#E4405F; /* Instagram */

}

.social-icons a:nth-child(3){

    color:#000000; /* TikTok */

}

.social-icons a:nth-child(4){

    color:#1877F2; /* Facebook */

}

.social-icons a:nth-child(5){

    color:#000000; /* X */

}

.social-icons a:nth-child(6){

    color:#0A66C2; /* LinkedIn */

}

.social-icons a:hover{

    opacity:.8;

}

.intro,
.section-intro{

    max-width:760px;
    margin:0 auto 28px;
    font-size:18px;
    color:#444;
    line-height:1.6;

}



/* ================= GENERAL ================= */

section{

    padding:18px 0;

}

section h2{

    font-size:18px;

    font-weight:700;

    letter-spacing:-.5px;

    color:#171717;

    margin-bottom:24px;

}

section h2::after{

content:"";

display:block;

width:55px;

height:4px;

margin-top:10px;

border-radius:50px;

background:linear-gradient(

90deg,

var(--accent),

#f2b47c

);

}


/* ================= AUTHORITY STRIP ================= */

.authority-strip{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:56px;

    padding:36px 0;

    margin:10px 0 30px;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.stat-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:4px;

    text-align:center;

}

.stat-number{

    font-size:28px;

    font-weight:800;

    letter-spacing:-1px;

    color:var(--accent);

}

.stat-label{

    font-size:12px;

    font-weight:600;

    letter-spacing:.6px;

    text-transform:uppercase;

    color:var(--muted);

}



/* ================= CHANNELS ================= */

.channel-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    border:none;

    background:none;

}

.channel{

    display:flex;

    gap:18px;

    align-items:center;

    padding:22px;

    border:none;

    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.05);

    backdrop-filter:blur(18px);

    border-radius:22px;

    box-shadow:

0 1px 1px rgba(0,0,0,.02),

0 10px 35px rgba(0,0,0,.04),

0 40px 90px rgba(0,0,0,.03);

    transition:.35s;

}

.channel:hover{

transform:

translateY(-10px)

scale(1.02);


}

.channel a:hover{

gap:12px;

}



.channel:last-child{

    border-right:none;

}

.channel img{

    width:70px;
    height:70px;

    border-radius:18px;

}

.channel h3{

    font-size:21px;
    margin-bottom:5px;

}

.channel p{

    font-size:15px;
    color:var(--muted);
    margin-bottom:8px;

}

.channel a{

display:inline-flex;

align-items:center;

gap:6px;

font-weight:600;

color:var(--accent);

transition:.25s;

}


/* ================= TEACH (What I Teach) ================= */
/* Same card language as .channel, wider single feature */

.teach-feature{

    display:flex;

    gap:24px;

    align-items:center;

    padding:28px;

    background:#FFFFFF;

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

    border-radius:22px;

    box-shadow:

0 1px 1px rgba(0,0,0,.02),

0 10px 35px rgba(0,0,0,.04),

0 40px 90px rgba(0,0,0,.03);

    transition:.35s;

}

.teach-feature:hover{

    transform:translateY(-8px);

}

.teach-feature img{

    width:90px;

    height:90px;

    border-radius:20px;

    flex-shrink:0;

}

.teach-feature h3{

    font-size:22px;

    margin-bottom:6px;

}

.teach-feature p{

    font-size:15px;

    color:var(--muted);

    margin-bottom:10px;

}

.teach-feature a{

    display:inline-flex;

    align-items:center;

    gap:6px;

    font-weight:600;

    color:var(--accent);

    transition:.25s;

}

.teach-feature a:hover{

    gap:12px;

}



/* ================= FILMS ================= */

.film-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    align-items:start;

}

.film-card{

    background:#FFFFFF;

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

    border-radius:24px;

    overflow:hidden;

    box-shadow:

0 1px 1px rgba(0,0,0,.02),

0 12px 35px rgba(0,0,0,.04),

0 40px 90px rgba(0,0,0,.03);

     transition:.35s ease;

}

.nadidove-films{
    color:var(--accent);
    font-weight: 1000;
}


/* ================= PLAYABLE POSTER ================= */

.film-poster{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.film-poster img{

    display:block;

    width:100%;

    transition:.5s;

}

.play-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:16px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15)
    );

    opacity:0;

    transition:.35s;

}

.play-button{

    position:relative;

    width:74px;

    height:74px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

}

.play-overlay span{

    color:white;

    font-size:16px;

    font-weight:600;

    letter-spacing:.4px;

}

.play-button::after{

    content:"";

    position:absolute;

    inset:-8px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:50%;

    animation:ripple 2s infinite;

}

@keyframes ripple{

    from{

        transform:scale(1);

        opacity:1;

    }

    to{

        transform:scale(1.4);

        opacity:0;

    }

}

.film-poster:hover img{

    transform:scale(1.05);

}

.film-poster:hover .play-overlay{

    opacity:1;

    backdrop-filter:blur(3px);

}

.film-poster:hover .play-button{

    transform:scale(1);

}

.play-button:hover{

    transform:scale(1.08);

}

.film-card:hover{

transform:

translateY(-10px)

scale(1.015);
transform:translateY(-6px);

}

.film-image{

    overflow:hidden;

}

.film-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.film-card:hover img{

    transform:scale(1.06);

}

.film-content{

    padding:18px 22px 20px;

}

.film-content span{

    color:var(--accent);

    font-size:11px;

    letter-spacing:2.5px;

    margin-bottom:8px;
    display:block;

    font-weight:700;

}

.film-content h3{

    
    margin:6px 0 10px;

    font-size:24px;

    line-height:1.15;

    letter-spacing:-0.8px;

}

.film-content p{

    color:var(--muted);

    
    font-size:16px;

    line-height:1.5;

    margin:0;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.film-content a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    color:var(--accent);

}

.film a{

    color:var(--accent);
    font-weight:700;

}

/* New: one-line workflow/technique note under each film synopsis */

.film-technique{

    margin-top:10px;

    padding-top:10px;

    border-top:1px dashed rgba(0,0,0,.1);

    font-size:13px;

    font-weight:600;

    color:var(--accent);

}



/* ================= VIDEO MODAL ================= */

.video-modal{

    position:fixed;

    inset:0;

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

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.video-modal.active{

    opacity:1;

    visibility:visible;

}

.video-box{

    width:min(1100px,90vw);

    aspect-ratio:16/9;

    background:#000;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    transform:scale(.92);

    transition:.35s;

    box-shadow:

        0 25px 80px rgba(0,0,0,.4);

}

.video-modal.active .video-box{

    transform:scale(1);

}

.video-box iframe{

    width:100%;

    height:100%;

    border:none;

}

.close-video{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    color:white;

    cursor:pointer;

    backdrop-filter:blur(10px);

    z-index:100;

    transition:.25s;

}

.close-video:hover{

    background:white;

    color:black;

}

@media(max-width:700px){

.video-box{

    width:95vw;

    border-radius:14px;

}

.close-video{

    width:38px;

    height:38px;

}

}


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

.final-cta{

    text-align:center;

    background:#FFFFFF;

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

    border-radius:28px;

    padding:56px 30px;

    margin:30px 0 10px;

    box-shadow:

0 1px 1px rgba(0,0,0,.02),

0 12px 35px rgba(0,0,0,.04),

0 40px 90px rgba(0,0,0,.03);

}

.final-cta h2::after{

    margin-left:auto;

    margin-right:auto;

}

.final-cta .section-intro{

    margin:0 auto 28px;

}

.final-cta .hero-cta{

    margin-bottom:0;

}



/* ================= FOOTER ================= */

footer{

    margin-top:100px;

    padding:55px 0;

    background:transparent;

    text-align:center;

}

footer::before{

    content:"";

    display:block;

    width:70px;

    height:1px;

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

    margin:0 auto 28px;

}

footer p{

    color:#7A7A7A;

    font-size:15px;

    font-weight:500;

    letter-spacing:.2px;

}



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

@media(max-width:980px){

.hero h1{

    font-size:44px;

}

.intro,
.section-intro{

    font-size:17px;

}

.channel-grid{

    grid-template-columns:1fr;

}

.channel{

    border-right:none;
    border-bottom:1px solid var(--border);

}

.channel:last-child{

    border-bottom:none;

}

.teach-feature{

    flex-direction:column;

    text-align:center;

}

.film{

    grid-template-columns:1fr;

}
.film-grid{

    grid-template-columns:1fr;

}

.film img{

    height:220px;

}

.authority-strip{

    gap:36px;

}

}



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

@media(max-width:600px){

.profile{

    width:130px;
    height:130px;

    margin-bottom:20px;

}

.hero{
    width:100%;
    max-width:100%;
    margin:0 auto;
}

.hero h1{

    font-size:37px;

    font-weight:700;

    letter-spacing:-2px;

    line-height:.95;

    margin-bottom:10px;

}

.roles{

    font-size:14px;

    line-height:1.5;

    color:#7B7B7B;

    max-width:320px;

    margin:0 auto 20px;

}

.hero-subline{

    font-size:13px;

}

.hero-cta{
    display:flex;
    flex-direction:row !important;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap !important;
    gap:10px;
}

.hero-cta .btn{
    flex:0 0 auto;
    width:145px;
    padding:11px 16px;
    white-space:nowrap;
    font-size:14px;
}




.social-icons{

    gap:18px;

}

.social-icons a{

    font-size:22px;

}

section{

    padding:28px 0;

}

.intro,
.section-intro{

    font-size:16px;

}

.channel,
.teach-feature{

    display:flex;

    flex-direction:row;

    align-items:center;

    text-align:left;

    gap:16px;

    padding:18px;

}

.channel img,
.teach-feature img{

    width:54px;

    height:54px;

    border-radius:14px;

    flex-shrink:0;

}

.channel h3,
.teach-feature h3{

    font-size:20px;

    margin-bottom:4px;

}

.channel p,
.teach-feature p{

    font-size:14px;

    line-height:1.45;

    margin-bottom:10px;

}
.channel a,
.teach-feature a{

    font-size:15px;

}

.film h3{

    font-size:24px;

}

.film-image img{

    height:180px;

}

.film-content{

    padding:14px 16px 16px;

}

.film-content span{

    font-size:9px;

    letter-spacing:2px;

    margin-bottom:4px;

    display:block;

}

.film-content h3{

    font-size:20px;

    line-height:1.1;

    margin:2px 0 6px;

    letter-spacing:-0.4px;

}

.film-content p{

    font-size:13px;

    line-height:1.4;

    margin:0;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.film-card{

    overflow:hidden;

    height:auto;

    align-self:start;

}

.film-grid{

    grid-template-columns:1fr;

    gap:18px;

    align-items:start;

}

.authority-strip{

    gap:26px 40px;

    padding:26px 0;

}

.stat-number{

    font-size:22px;

}

.final-cta{

    padding:36px 20px;

    border-radius:20px;

}

.container{
    width:92%;
    max-width:100%;
    overflow-x:hidden;
}

.channel,
.film-card,
.teach-feature{

    border-radius:16px;

}


.hero-email{

    font-size:14px;

    margin-top:14px;

    margin-bottom:18px;

}

body::before,
body::after{

    display:none;

}



footer{

    margin-top:40px;

    padding:30px 0;

    background:transparent;

}

footer .container{

    flex-direction:column;

    text-align:center;

    gap:8px;

}

footer p{

    font-size:14px;

}


}