/* ===================================================
   1. BODY
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8f8f8;
    color:#333;
}

/* ===================================================
   2. HERO SECTION
=================================================== */

.hotel-hero{
    width:100%;
    position:relative;
}

.overlay{
    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;
}

.overlay img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    filter:brightness(45%);
}

/* ===================================================
   3. HERO CONTENT
=================================================== */

.overlay h1{
    position:absolute;
    top:120px;
    left:60px;
    color:#fff;
    font-size:72px;
    font-weight:bold;
    z-index:2;
}

.overlay>p{
    position:absolute;
    top:240px;
    left:60px;
    color:#fff;
    font-size:30px;
    width:600px;
    z-index:2;
    line-height:45px;
}

/* ===================================================
   4. HERO ICONS
=================================================== */

.hero-icons{
    position:absolute;
    bottom:60px;
    left:60px;
    display:flex;
    gap:60px;
    z-index:2;
}

.hero-icons div{
    text-align:center;
    color:#fff;
}

.hero-icons i{
    font-size:48px;
    color:#d4a64b;
    margin-bottom:12px;
}

.hero-icons p{
    font-size:16px;
    font-weight:600;
}

/* ===================================================
   5. HOTEL CONTENT
=================================================== */

.hotel-content{
    width:95%;
    max-width:1400px;
    margin:40px auto;
}

/* ===================================================
   6. TWO CARDS
=================================================== */

.hotel-left{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.card h2{
    color:#7a0019;
    font-size:34px;
    margin-bottom:20px;
}

.card ul{
    list-style:none;
}

.card li{
    padding:12px 0;
    font-size:22px;
}

/* ===================================================
   7. POPULAR DESTINATION
=================================================== */

.popular-destination{
    margin-top:40px;
    background:#fff;
    padding:-10px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.popular-destination img{
    width:100%;
    display:block;
    border-radius:15px;
}

/* ===================================================
   8. MOBILE
=================================================== */

@media(max-width:992px){

.overlay{
    height:500px;
}

.overlay img{
    height:500px;
}

.overlay h1{
    font-size:42px;
    left:25px;
    top:70px;
}

.overlay>p{
    left:25px;
    top:150px;
    width:320px;
    font-size:20px;
    line-height:30px;
}

.hero-icons{
    left:20px;
    bottom:20px;
    gap:20px;
    flex-wrap:wrap;
}

.hotel-left{
    grid-template-columns:1fr;
}

}

.why-book{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.why-book h2{
    text-align:center;
    font-size:34px;
    color:#0b1f53;
    margin-bottom:8px;
    font-weight:700;
}

.sub-title{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    font-size:16px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.why-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:25px 15px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.why-card i{
    font-size:42px;
    color:#d4a017;
    margin-bottom:15px;
}

.why-card h3{
    font-size:18px;
    color:#0b1f53;
    margin-bottom:10px;
}

.why-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}

/* Tablet */
@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .why-book h2{
        font-size:28px;
    }
}