/* ===========================================
   FOODREVIEW+ DETAIL PAGE
===========================================*/
body{

    background:#f3f4f6;

    color:#222;

    font-family:'Poppins',sans-serif;

}

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

.detail-hero{
    position:relative;
    width:100%;
    height:88vh;
    overflow:hidden;
    margin-top:72px; /* tinggi header */
}

.detail-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

.detail-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.65) 35%,
        rgba(0,0,0,.20) 70%,
        rgba(0,0,0,.05) 100%
    ),
    linear-gradient(
        0deg,
        rgba(15,15,16,.95) 0%,
        rgba(15,15,16,0) 45%
    );
}

.detail-inner{

    position:absolute;

    left:8%;

    bottom:80px;

    max-width:720px;

    z-index:99;

}

.premium-label{

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

    background:linear-gradient(135deg,#E50914,#B20710);

    color:#fff;

    padding:8px 18px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    letter-spacing:.5px;

    box-shadow:0 8px 20px rgba(229,9,20,.35);

    margin-bottom:20px;

}
.detail-inner h1{

    font-size:64px;

    line-height:1.1;

    margin:0 0 20px;

    color:#fff;

    font-weight:700;

}

.video-meta{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin:25px 0;

}

.video-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

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

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:30px;

    color:#fff;

    font-size:15px;

    font-weight:500;

}

.speaker{

    font-size:22px;

    margin-bottom:18px;

    color:#fff;

}

.hero-description{

    color:#ddd;

    line-height:1.8;

    font-size:17px;

    margin-bottom:35px;

}

.hero-button{

    display:flex;

    gap:15px;

}

.btn-watch{

    background:#E50914;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-watch:hover{

    background:#c40710;

}

.btn-favorite{

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

    color:#fff;

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(10px);

    padding:15px 28px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.btn-favorite:hover{

    background:#fff;

    color:#222;

}

/* ================= BODY ================= */

.detail-body{

    padding:70px 0;

}

.detail-container{

    width:90%;

    max-width:1500px;

    margin:auto;

}

/* ================= CARD ================= */

.about-box,
.learning-box,
.speaker-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    margin-bottom:35px;

    border:1px solid #e8e8e8;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.about-box h2,
.learning-box h2,
.speaker-box h2{

    color:#222;

    font-size:30px;

    margin-bottom:20px;

}

.about-box p{

    color:#666;

    line-height:1.9;

    font-size:16px;

}

.learning-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.learning-box li{

    color:#444;

    border-bottom:1px solid #ececec;

    padding:14px 0;

}
.learning-box li:last-child{

    border:none;

}

/* ================= SPEAKER ================= */

.speaker-card{

    display:flex;

    align-items:center;

    gap:25px;

}

.speaker-photo{

    width:100px;

    height:100px;

    border-radius:50%;

    background:#E50914;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:45px;

}

.speaker-card h3{

    margin:0 0 8px;

    font-size:24px;

}

.speaker-card p{

    color:#666;

}

/* ================= RELATED ================= */

.related-title{

    margin:60px 0 30px;
color:#222;

    font-size:36px;

}

.relatedSwiper{

    padding-bottom:50px;

}

.relatedSwiper .swiper-slide{

    height:auto;

}

.relatedSwiper .movie-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.relatedSwiper .movie-card:hover{

    transform:translateY(-8px);

}

.relatedSwiper .movie-image{

    width:100%;

    height:310px;

}

.relatedSwiper .movie-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.relatedSwiper .movie-content{

    padding:18px;

}

.relatedSwiper .movie-content h3{

    font-size:18px;

    margin:0 0 10px;

     color:#222;

}

.relatedSwiper .movie-speaker{

    color:#bbb;

    font-size:14px;

    margin-bottom:8px;

}

.relatedSwiper .movie-meta{

    color:#E50914;

    font-weight:600;

}
.relatedSwiper .swiper-button-next,
.relatedSwiper .swiper-button-prev{

    color:#fff;

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.detail-hero{

height:70vh;

}

.detail-inner{

left:30px;

right:30px;

bottom:50px;

max-width:100%;

}

.detail-inner h1{

font-size:42px;

}

.hero-button{

flex-direction:column;

}

.speaker-card{

flex-direction:column;

text-align:center;

}

}

@media(max-width:576px){

.detail-hero{

height:65vh;

}

.detail-inner h1{

font-size:32px;

}

.hero-description{

display:none;

}

.video-meta{

gap:8px;

}

.video-meta span{

font-size:12px;

padding:6px 12px;

}

.about-box,
.learning-box,
.speaker-box{

padding:25px;

}

.relatedTitle{

font-size:28px;

}

}