/* ===========================
   GOOGLE FONT & RESET
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#222;
    overflow-x:hidden;
}

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

.navbar{
    padding:18px 0;
    transition:.4s;
    background:rgba(0,0,0,.20);
    backdrop-filter:blur(15px);
}

.navbar-brand{
    color:#fff !important;
    font-size:28px;
    font-weight:700;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:#ffc107 !important;
}

.btn-warning{
    border-radius:50px;
    padding:10px 28px;
    font-weight:600;
}

/* ===========================
        HERO
=========================== */
.hero{

    position:relative;
    width:100%;
    min-height:100vh;

    /* Background Image Here */
     background-image:url('assets/images/grece.jpg'); 

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

    display:flex;
    align-items:center;

}

.hero-overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero h1{

    color:#fff;
    font-size:65px;
    font-weight:800;

}

.hero p{

    color:#eee;
    font-size:20px;

}
/* ===========================
     SEARCH CARD
=========================== */

.search-card{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.30);

    border-radius:25px;

    padding:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.30);

}

.search-card h3{

    color:#fff;
    margin-bottom:20px;

}

.search-card label{

    color:#fff;
    font-weight:500;

}

.search-card .form-control,
.search-card .form-select{

    border-radius:12px;
    padding:12px;

}

.search-card button{

    border-radius:50px;
    padding:14px;
    font-weight:600;

}

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

.destinations{

    padding:100px 0;

}

.destinations h2{

    font-size:42px;
    font-weight:700;

}

.destination-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

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

}

.destination-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 40px rgba(0,0,0,.20);

}

.destination-card img{

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

}

.destination-card .card-body{

    padding:25px;

}

.destination-card h4{

    font-weight:700;

}

.destination-card p{

    color:#666;

}

/* ===========================
 WHY CHOOSE US
=========================== */

.why-us{

    padding:100px 0;
    background:#f5f8fc;

}

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:40px;

    transition:.4s;

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

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 40px rgba(0,0,0,.15);

}

.feature-box i{

    margin-bottom:20px;

}

.feature-box h4{

    font-weight:700;

}