/* ==========================================
   FOODREVIEW+ DETAIL EVENT
========================================== */

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

.container{

    width:92%;
    max-width:1400px;
    margin:auto;

}

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

.event-hero{

    position:relative;

    height:520px;

    overflow:hidden;

}

.event-hero img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.78)
    );

}

.hero-content{

    position:absolute;

    left:8%;
    bottom:60px;

    color:#fff;

    max-width:720px;

}

.hero-category{

    display:inline-block;

    background:#E50914;

    padding:8px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:52px;

    margin:0 0 18px;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#eee;

}

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

.event-detail{

    margin-top:50px;
    margin-bottom:80px;

}

.detail-grid{

    display:grid;

    grid-template-columns:2fr 420px;

    gap:35px;

}

/* ==========================================
   LEFT
========================================== */

.detail-box{

    background:#fff;

    padding:35px;

    border-radius:18px;

    margin-bottom:25px;

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

}

.detail-box h2{

    margin-top:0;

    font-size:28px;

    margin-bottom:20px;

}

.detail-box p{

    line-height:1.9;

    color:#666;

}

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

.speaker-box{

    display:flex;

    align-items:center;

    gap:20px;

}

.speaker-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#E50914;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

}

.speaker-box h3{

    margin:0;

}

.speaker-box p{

    margin-top:8px;

}

/* ==========================================
   AGENDA
========================================== */

.agenda{

    list-style:none;

    padding:0;

    margin:0;

}

.agenda li{

    padding:15px 0;

    border-bottom:1px solid #eee;

    position:relative;

    padding-left:35px;

}

.agenda li:before{

    content:"";

    width:12px;

    height:12px;

    border-radius:50%;

    background:#E50914;

    position:absolute;

    left:0;

    top:22px;

}

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

.detail-right{

    position:sticky;

    top:100px;

    height:max-content;

}

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

.register-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    margin-bottom:25px;

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

}

.register-card h2{

    margin:0 0 25px;

    color:#E50914;

    font-size:36px;

}

.info-item{

    padding:12px 0;

    border-bottom:1px solid #eee;

    color:#555;

    font-size:15px;

}

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

.register-btn{

    display:block;

    width:100%;

    margin-top:30px;

    background:#E50914;

    color:#fff;

    text-align:center;

    text-decoration:none;

    padding:16px;

    border-radius:10px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.register-btn:hover{

    background:#c40811;

}

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

.countdown-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    margin-bottom:25px;

    text-align:center;

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

}

.countdown-card h3{

    margin-bottom:20px;

}

.count-number{

    font-size:48px;

    color:#ff9800;

    font-weight:700;

    margin-bottom:10px;

}

/* ==========================================
   MAP
========================================== */

.map-card{

    background:#fff;

    padding:25px;

    border-radius:18px;

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

}

.map-card h3{

    margin-top:0;

    margin-bottom:20px;

}

.map-card iframe{

    width:100%;

    height:280px;

    border:none;

    border-radius:15px;

}

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

.related-event{

    margin:70px 0;

}

.related-event h2{

    margin-bottom:35px;

    font-size:34px;

}

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

@media(max-width:1100px){

.detail-grid{

grid-template-columns:1fr;

}

.detail-right{

position:static;

}

}

@media(max-width:768px){

.event-hero{

height:420px;

}

.hero-content{

left:25px;

right:25px;

bottom:40px;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:16px;

}

.detail-box{

padding:25px;

}

.register-card{

padding:25px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:15px;

}

.speaker-box{

flex-direction:column;

align-items:flex-start;

}

.count-number{

font-size:36px;

}

.map-card iframe{

height:220px;

}

}