
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
}

/* =======================
   NAVBAR
======================= */

.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:30px 8%;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:white;
    font-size:24px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:14px;
}

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

.hero{
    position:relative;
    height:100vh;
    min-height:800px;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.35)
    ),
    url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=80');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    color:white;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:120px;
    line-height:1;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

/* =======================
   SEARCH BAR
======================= */

.search-panel{
    position:absolute;
    bottom:40px;
    width:85%;
    background:rgba(105,70,20,.75);
    backdrop-filter:blur(12px);

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

    border-radius:12px;
    overflow:hidden;
}

.search-item{
    padding:22px;
    border-right:1px solid rgba(255,255,255,.15);
}

.search-item label{
    display:block;
    color:#ddd;
    font-size:12px;
    margin-bottom:8px;
}

.search-item input{
    width:100%;
    background:none;
    border:none;
    color:white;
    outline:none;
}

.search-btn{
    border:none;
    background:white;
    font-weight:600;
    cursor:pointer;
}

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

.about{
    padding:120px 8%;
}

.top-meta{
    text-align:center;
    color:#777;
    font-size:14px;
    margin-bottom:30px;
}

.about-title{
    text-align:center;
    font-size:72px;
    font-weight:700;
    line-height:1.05;
}

/* =======================
   TIMELINE
======================= */

.travel-line{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:40px 0 70px;
}

.travel-line span{
    width:130px;
    height:2px;
    background:#8ec5ff;
}

.pin{
    width:32px;
    height:32px;
    border:3px solid #3a8cff;
    border-radius:50%;
    position:relative;
}

.pin::after{
    content:'';
    width:10px;
    height:10px;
    background:#3a8cff;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* =======================
   ABOUT GRID
======================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:70px;
}

.about-left h3{
    font-size:42px;
    margin-bottom:20px;
}

.about-left p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.book-btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    background:#111;
    color:white;
    text-decoration:none;
}

/* =======================
   ZIGZAG CARDS
======================= */

.zigzag{
    display:flex;
    align-items:flex-start;
    gap:25px;
}

.place{
    border-radius:24px;
    overflow:hidden;
    position:relative;
}

.place img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.place-1{
    width:280px;
    height:360px;
}

.place-2{
    width:190px;
    height:250px;
    margin-top:100px;
}

.place-3{
    width:190px;
    height:250px;
    margin-top:40px;
}

.place-name{
    position:absolute;
    bottom:15px;
    left:15px;
    color:white;
    font-weight:600;
}

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

.destinations{
    padding:50px 8% 120px;
}

.destinations-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:40px;
}

.destinations-header h2{
    font-size:72px;
}

.destinations-header p{
    color:#666;
    max-width:350px;
    line-height:1.7;
}

/* =======================
   FILTER BAR
======================= */

.filters{
    display:grid;
    grid-template-columns:repeat(4,1fr) 140px;
    gap:15px;
    margin-bottom:40px;
}

.filters input{
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
}

.filters button{
    border:none;
    border-radius:10px;
    background:black;
    color:white;
    cursor:pointer;
}

/* =======================
   CARDS
======================= */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card-image{
    position:relative;
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.badge{
    position:absolute;
    top:15px;
    right:15px;
    background:white;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.card-content{
    padding:22px;
}

.card-content h3{
    margin-bottom:8px;
}

.card-content p{
    color:#666;
    line-height:1.6;
}

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

@media(max-width:1100px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .search-panel{
        grid-template-columns:1fr;
        width:90%;
    }

    .filters{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:70px;
    }

    .about-title,
    .destinations-header h2{
        font-size:48px;
    }

    .zigzag{
        flex-direction:column;
    }

    .place-2,
    .place-3{
        margin-top:0;
    }
}