/* ==========================================
   FOODREVIEW+ DETAIL UPCOMING
========================================== */

body{
    margin:0;
    padding:0;
    background:#eef2f6;
    font-family:'Poppins',sans-serif;
    color:#222;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

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

.coming-hero{

    position:relative;

    height:550px;

    overflow:hidden;

}

.coming-hero img{

    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.20),
        rgba(0,0,0,.82)
    );

}

.hero-content{

    position:absolute;

    left:8%;
    bottom:60px;

    max-width:720px;

    color:#fff;

}

.coming-badge{

    display:inline-block;

    background:#ff9800;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

    letter-spacing:.8px;

}

.hero-content h1{

    margin:0;

    font-size:56px;

    line-height:1.2;

}

.hero-content p{

    margin-top:18px;

    color:#eee;

    line-height:1.9;

    font-size:17px;

}

/* ==========================================
   CONTENT
========================================== */

.coming-content{

    margin:60px 0;

}

.coming-grid{

    display:grid;

    grid-template-columns:2fr 420px;

    gap:35px;

}

/* ==========================================
   BOX
========================================== */

.box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    margin-bottom:25px;

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

}

.box h2{

    margin-top:0;

    margin-bottom:20px;

    font-size:28px;

}

.box p{

    line-height:1.9;

    color:#666;

}

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

.speaker{

    display:flex;

    align-items:center;

    gap:20px;

}

.avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#E50914;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:42px;

}

/* ==========================================
   RIGHT
========================================== */

.coming-right{

    position:sticky;

    top:100px;

    height:max-content;

}

.release-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

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

}

.release-box h2{

    margin-top:0;

    text-align:center;

}

.release-date{

    font-size:26px;

    color:#E50914;

    font-weight:700;

    text-align:center;

    margin-bottom:35px;

}

/* ==========================================
   COUNTDOWN
========================================== */

.countdown{

    display:grid;

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

    gap:12px;

    margin-bottom:35px;

}

.countdown div{

    background:#fafafa;

    border-radius:16px;

    padding:18px 10px;

    text-align:center;

    border:1px solid #eee;

}

.countdown span{

    display:block;

    font-size:34px;

    color:#ff9800;

    font-weight:700;

}

.countdown small{

    color:#666;

    font-size:12px;

}

/* ==========================================
   BUTTON
========================================== */

.notify-btn{

    width:100%;

    background:#E50914;

    color:#fff;

    border:none;

    border-radius:12px;

    padding:16px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.notify-btn:hover{

    background:#c40811;

}

/* ==========================================
   COMING LIST
========================================== */

.coming-list{

    margin:80px 0;

}

.coming-list h2{

    margin-bottom:35px;

    font-size:34px;

}

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

@media(max-width:1100px){

.coming-grid{

grid-template-columns:1fr;

}

.coming-right{

position:static;

}

}

@media(max-width:768px){

.coming-hero{

height:420px;

}

.hero-content{

left:25px;

right:25px;

bottom:35px;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:15px;

}

.box{

padding:25px;

}

.release-box{

padding:25px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:28px;

}

.countdown{

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

}

.countdown span{

font-size:28px;

}

.avatar{

width:70px;

height:70px;

font-size:32px;

}

.speaker{

align-items:flex-start;

}

}