@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#050b1a;
    color:white;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 70px;

    background:#050b1a;

    z-index:1000;
}

.logo{
    font-size:22px;
    font-weight:700;
}

nav{
    display:flex;
    gap:50px;
}

nav a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#5b6cff;
}

nav a.active{
    color:#5b6cff;
}

/* ================= HERO ================= */

.hero{
    position:relative;

    height:650px;

    margin-top:90px;

    background-image:url("../../images/Podcast.png");
    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(4,11,25,0.96) 0%,
        rgba(4,11,25,0.92) 28%,
        rgba(4,11,25,0.65) 55%,
        rgba(4,11,25,0.15) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;

    width:550px;

    margin-left:80px;
}

.tag{
    display:inline-block;

    padding:12px 22px;

    border:1px solid rgba(91,108,255,.4);

    background:rgba(91,108,255,.12);

    border-radius:50px;

    color:#aab4ff;

    font-size:16px;

    margin-bottom:30px;
}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;

    margin-bottom:25px;
}

.hero h1 span{
    color:#5b6cff;
}

.hero p{
    font-size:18px;

    line-height:1.8;

    color:#d7dbe5;

    margin-bottom:35px;

    max-width:520px;
}

.cta-btn{
    background:#5b6cff;

    color:white;

    border:none;

    padding:18px 36px;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-4px);
    background:#4c5cff;
}



/* ================= CARDS ================= */

.features{
    max-width:1400px;

    margin:25px auto 60px;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    position:relative;

    z-index:10;
}

.feature-card{

    min-height:230px;

    position:relative;

    display:flex;

    justify-content:center;   /* tengah atas-bawah */

    align-items:center;       /* tengah kiri-kanan */

    text-align:center;

    padding:25px;

    border-radius:24px;

    overflow:hidden;
}

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
}

.feature-card div{

    position:relative;

    z-index:2;

    width:100%;

     display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.card1{

    background-image:url("../../images/N.jpeg");

    background-size:cover;

    background-position:center;
}

.card2{

    background-image:url("../../images/P.jpeg");

    background-size:cover;

    background-position:center;
}

.card3{

    background-image:url("../../images/E.jpeg");

    background-size:cover;

    background-position:center;
}

.icon{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    margin-bottom:25px;
}

.feature-card h3{
    font-size:32px;

    font-weight:800;

    margin-bottom:12px;
    
    text-align:center;
}

.feature-card p{
    font-size:16px;

    line-height:1.6;

    text-align:center;

    max-width:260px;

    margin:0 auto;

    color:rgba(255,255,255,.92);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .hero{
        height:auto;
        padding:120px 0 100px;
    }

    .hero-content{
        width:90%;
        margin:0 auto;
    }

    .hero h1{
        font-size:52px;
    }

    .features{
        grid-template-columns:1fr;
        margin:40px auto;
    }

    nav{
        gap:20px;
    }
}

@media(max-width:768px){

    header{
        padding:0 25px;
    }

    .hero-content{
        width:90%;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:16px;
    }

    nav a{
        font-size:15px;
    }
}

.about{
    max-width:1200px;
    margin:100px auto;
    padding:0 40px;
}

.about-content{
    text-align:center;
}

.about h2{
    font-size:42px;
    margin-bottom:25px;
}

.about p{
    max-width:800px;
    margin:auto;

    font-size:18px;
    line-height:1.9;

    color:#c9d1e2;
}

.stats{
    display:flex;
    justify-content:center;
    gap:30px;

    margin-top:50px;
}

.stat-box{
    background:#0f1b35;

    padding:30px;

    border-radius:20px;

    width:220px;
}

.stat-box h3{
    color:#5b6cff;
    font-size:36px;
}

.stat-box span{
    color:#d4d9e6;
}
/* ================= PROGRAM ================= */

.program-grid{

    max-width:1400px;

    margin:20px auto 80px;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.program-card{

    background:#0f172a;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;

    cursor:pointer;
}

.program-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.program-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;
}

.program-content{

    padding:20px;

    text-align:center;
}

.program-content h3{

    font-size:22px;

    margin-bottom:10px;

    color:white;

    max-width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.program-content p{

    color:#cfd6e6;

    font-size:15px;

    line-height:1.7;

    text-align:center;
}

@media(max-width:992px){

    .program-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .program-grid{

        grid-template-columns:1fr;
    }

}

/* ================= NEWS ================= */

.news-header{

    margin-top:140px;

    text-align:center;

    padding:0 20px 50px;
}

.news-header h1{

    font-size:56px;

    font-weight:800;

    margin-bottom:15px;
}

.news-header p{

    color:#bfc7da;

    font-size:18px;
}

.news-container{

    max-width:1200px;

    margin:auto;

    padding:0 20px 80px;
}

.news-card{

    display:flex;

    gap:30px;

    background:#0f172a;

    border-radius:24px;

    overflow:hidden;

    margin-bottom:30px;

    cursor:pointer;

    transition:.3s;
}

.news-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.news-card img{

    width:320px;

    height:240px;

    object-fit:cover;
    flex-shrink:0;
}

.news-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    min-width:0;
    overflow:hidden;
}

.news-date{

    color:#5b6cff;

    font-size:14px;

    margin-bottom:12px;
}

.news-content h2{

    font-size:30px;

    line-height:1.4;

    margin-bottom:15px;

    max-width:100%;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-content p{

    color:#cfd6e6;

    line-height:1.8;
}

/* ================= ARTICLE PAGE ================= */

.article-top{

    max-width:1450px;

    margin:140px auto 80px;

    padding:0 40px;

    display:grid;

    grid-template-columns:600px 1fr;

    gap:50px;

    align-items:start;
}

.article-top img{

    width:100%;

    height:550px;

    border-radius:20px;

    object-fit:cover;

    position:sticky;

    top:120px;
}

.article-date{

    color:#5b6cff;

    font-weight:600;

    font-size:15px;
}

.article-info h1{

    font-size:48px;

    line-height:1.2;

    margin:15px 0 20px;
}

.article-author{

    color:#aeb8cf;

    margin-bottom:30px;

    font-size:16px;
}

.article-info p{

    font-size:18px;

    line-height:1.9;

    color:#d8dfef;

    margin-bottom:25px;

    text-align:justify;
}

.article-slider{

    position:sticky;

    top:120px;

    align-self:start;

    width:100%;

    max-width:800px;

    border-radius:20px;

    overflow:hidden;
}

.slide{

    width:100%;

    height:550px;

    object-fit:cover;

    display:none;
}

.slide.active{

    display:block;
}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    border:none;

    background:rgba(0,0,0,.5);

    color:white;

    font-size:28px;

    width:50px;

    height:50px;

    cursor:pointer;

    border-radius:50%;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

/* ================= EVENT ================= */

.event-grid{

    max-width:1400px;

    margin:40px auto 100px;

    padding:0 40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.event-card{

    background:#0f172a;

    border-radius:20px;

    overflow:hidden;

    transition:.3s;
}

.event-card:hover{

    transform:translateY(-8px);
}

.event-card img{

    width:100%;

    height:280px;

    object-fit:cover;
}

.event-content{

    padding:25px;
}

.event-date{

    color:#5b6cff;

    font-weight:600;
}

.event-content h3{

    font-size:24px;

    margin:15px 0;
}

.location{

    color:#cfd6e6;

    margin-bottom:15px;
}

.event-content p{

    color:#cfd6e6;

    line-height:1.8;
}

.event-btn{

    display:inline-block;

    margin-top:20px;

    padding:12px 24px;

    background:#5b6cff;

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;
}

.event-btn:hover{

    background:#4959ff;
}

/* ===== BANNER HALAMAN ===== */

.page-hero{

    position:relative;

    height:650px;

    margin-top:0px;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;
}

.page-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:0 20px;
}

.page-content h1{

    font-size:90px;

    font-weight:800;

    margin-bottom:20px;
}

.page-content p{

    font-size:22px;

    color:#d7dbe5;

    line-height:1.8;
}

/* ================= FOOTER ================= */

.footer{
    background:#030816;

    margin-top:100px;

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    max-width:1200px;
    margin:auto;
}

.footer h2{
    font-size:32px;
    font-weight:700;

    margin-bottom:10px;
}

.footer-desc{
    color:#b8c1d8;

    font-size:17px;

    margin-bottom:35px;
}

.social-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.social-links a{

    background:#0f172a;

    padding:12px 20px;

    border-radius:50px;

    display:flex;
    align-items:center;
    gap:10px;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.social-links a:hover{

    background:#5b6cff;

    transform:translateY(-3px);
}

.footer-info{
    color:#9ea8c2;

    line-height:2;

    margin-bottom:25px;
}

.copyright{
    color:#6f7892;

    font-size:14px;
}

/* ================= PROGRAM TITLE ================= */

.section-title{

    text-align:center;

    max-width:900px;

    margin:130px auto 50px;

    padding:0 20px;
}

.section-title h2{

    font-size:48px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:15px;

    color:white;
}

.section-title p{

    font-size:18px;

    line-height:1.8;

    color:#bfc7da;

    max-width:700px;

    margin:auto;
}