/* ==========================================
   FOODREVIEW+ UPCOMING EVENT
========================================== */

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

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

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

.upcoming-hero{

    position:relative;

    height:520px;

    background:url('../images/upcoming-banner.jpg') center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.70)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.hero-content h1{

    font-size:60px;

    margin-bottom:15px;

    font-weight:700;

}

.hero-content p{

    font-size:20px;

    opacity:.95;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    background:#E50914;

    color:#fff;

    text-decoration:none;

    padding:16px 40px;

    border-radius:40px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.hero-btn:hover{

    background:#c40811;

    transform:translateY(-3px);

}

/* ==========================================
   STATS
========================================== */

.stats-row{

    display:grid;

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

    gap:25px;

    margin-top:-70px;

    position:relative;

    z-index:20;

    margin-bottom:60px;

}

.stat-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

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

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-6px);

}

.stat-box h2{

    margin:0;

    font-size:42px;

    color:#E50914;

}

.stat-box span{

    display:block;

    margin-top:10px;

    color:#666;

    font-size:15px;

}

/* ==========================================
   SECTION
========================================== */

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    font-size:40px;

    margin-bottom:10px;

}

.section-title p{

    color:#777;

    font-size:17px;

}

/* ==========================================
   EVENT GRID
========================================== */

.event-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));

    gap:30px;

    margin-bottom:80px;

}

/* ==========================================
   VIDEO GRID
========================================== */

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));

    gap:25px;

    margin-bottom:80px;

}

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

.event-card,
.upcoming-video{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

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

    transition:.35s;

}

.event-card:hover,
.upcoming-video:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.14);

}

.event-thumb{

    position:relative;

    height:230px;

    overflow:hidden;

}

.event-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.event-card:hover img{

    transform:scale(1.08);

}

/* ==========================================
   BADGE
========================================== */

.badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:8px 18px;

    border-radius:40px;

    font-size:12px;

    font-weight:bold;

    color:#fff;

    letter-spacing:.5px;

}

.badge-open{

    background:#18b55b;

}

.badge-full{

    background:#d63031;

}

.badge-coming{

    background:#ff9800;

}

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

.event-content{

    padding:24px;

}

.event-content h3{

    margin:0 0 15px;

    font-size:24px;

    line-height:1.35;

}

.event-info{

    display:flex;

    flex-direction:column;

    gap:10px;

    color:#666;

    font-size:15px;

}

.event-info span{

    display:flex;

    align-items:center;

    gap:8px;

}

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

.event-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:25px;

}

.btn-detail{

    background:#E50914;

    color:#fff;

    text-decoration:none;

    padding:11px 22px;

    border-radius:8px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.btn-detail:hover{

    background:#c40811;

}

.countdown{

    color:#ff9800;

    font-weight:700;

    font-size:14px;

}

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

.video-thumb{

    position:relative;

    aspect-ratio:2/3;

    overflow:hidden;

}

.video-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.upcoming-video:hover img{

    transform:scale(1.08);

}

.video-content{

    padding:18px;

}

.video-content h3{

    font-size:19px;

    margin-bottom:8px;

}

.video-content p{

    color:#777;

    margin-bottom:12px;

}

.release-date{

    color:#E50914;

    font-size:14px;

    font-weight:600;

}

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

@media(max-width:992px){

.hero-content h1{

font-size:46px;

}

.stats-row{

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

}

.event-grid{

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

}

}

@media(max-width:768px){

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:16px;

}

.event-grid{

grid-template-columns:1fr;

}

.video-grid{

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

}

}

@media(max-width:576px){

.stats-row{

grid-template-columns:1fr;

}

.video-grid{

grid-template-columns:1fr 1fr;

gap:18px;

}

.event-content h3{

font-size:20px;

}

.hero-btn{

padding:14px 30px;

}

}

.video-speaker{

    color:#666;
    font-size:14px;
    margin-bottom:10px;

}

.release-date{

    color:#444;
    margin-bottom:10px;

}

.countdown{

    display:inline-block;

    background:#fff3cd;

    color:#ff9800;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}