*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family: "Playwrite NZ Guides", cursive;
    font-weight: 400;
    font-style: normal;
}

body{
    background:white;
    color:blue;
}
/* Navbar */
.navbar{
    background:rgba(89, 136, 206, 0.7);
    backdrop-filter:blur(8px);
}
.navbar-brand{
    font-size:28px;
}

.nav-link{
    color:white !important;
    margin-left:15px;
    transition:.4s;
}
.nav-link:hover{
    color:#5087ec !important;
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(88, 80, 80, 0.6),rgba(90, 82, 82, 0.7)),
    url("travel_bg.webp");
    background-size:cover;
    background-position:center;
}
.hero h1{
    font-size:50px;
    font-weight:bold;
}
.hero p{
    font-size:20px;
    margin:20px 0;
    color:#ddd;
}
#about p{
    font-size: 30px;
}
/* Sections */
section{
    padding:80px 0;
}
h2{
    font-size:45px;
    margin-bottom:20px;
    font-weight:bold;
}
/* Cards */
.card img{
    height:450px;
    object-fit:cover;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 0 25px #00d4ff;
}
/* Destination Details */
section img{
    transition:.5s;
    border-radius:20px;
}
section img:hover{
    transform:scale(1.05);
}
section h3{
    font-weight:bold;
    margin-bottom:20px;
}
section p{
    font-size:18px;
    line-height:1.8;
}
section h5{
    color:#0d6efd;
    margin:15px 0;
    font-weight:bold;
}
hr{
    margin:70px 0;
    border:1px solid #ccc;
}
/* Reviews */
.review-card{
background:rgba(89, 136, 206, 0.7);
color:white;
border-radius:20px;
transition:.4s;
height:100%;
}
.review-card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px #0d6efd;
}
.review-img{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
}
.stars{
color:#ffc107;
font-size:25px;
margin-bottom:15px;
}
.review-card p{
color:#ddd;
line-height:1.7;
}
/* Contact */
form{
    max-width:800px;
    margin:auto;
}
.form-control{
    border-radius:10px;
    padding:15px;
}
.form-control:focus{
    box-shadow:0 0 15px #00d4ff;
}
/* Buttons */

.btn{
    transition:.4s;
}

.btn:hover{
    transform:scale(1.08);
}

/* Footer */

footer{
    background:#020617;
}

footer p{
    margin:0;
    color:#aaa;
}

/* Responsive */

@media(max-width:992px){

.hero{
text-align:center;
}

.hero h1{
font-size:45px;
}

.hero-img{
width:280px;
margin-top:30px;
}

}

@media(max-width:768px){

.hero h1{
font-size:35px;
}

.hero p{
font-size:17px;
}

h2{
font-size:30px;
}

#timer{
font-size:45px;
}
}
/* Pagination */
.pagination .page-link{
    background:#111827;
    color:white;
    border:none;
    margin:5px;
    border-radius:50%;
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}
.pagination .page-link:hover{
    background:#0d6efd;
    color:white;
    transform:translateY(-5px);
}
.pagination .active .page-link{
    background:#0d6efd;
    color:white;
    box-shadow:0 0 15px #0d6efd;
}