* body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

/* Top Bar */
/* .header-top-bar {
    background-color: #ffffff;
    color: #333;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.header-top-bar .toplinks {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.header-top-bar .toplinks:hover {
    color: #0d6efd;
    text-decoration: underline;
} */

/* Navbar */
.main-navbar {
    background-color: #f5dede;
    height: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-top: 50px;
}

.navbar-brand {
    font-size: 35px;
    margin-top: 45px;
    color: #864100 !important;
}

a.navbar-brand.fw-bold {
    font-size: 35px;
    margin-left: -15px;
}

.navbar-nav .nav-link {
    color: #864100;
    margin: 0 10px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: capitalize;
    font-size: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #864100;
}

/* Icons */
.navbar .bi {
    transition: color 0.2s;
}

.navbar .bi:hover {
    color: #864100;
}

/* Search box */
form[role="search"] input {
    width: 160px;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* adjust 0.4 for darkness */
    z-index: 1;
}
.vaccation-lead{
    margin-top: 350px;
}
.descri-box{
    color: #864100;
}
.img-box{
    background-image: url('https://www.explore.com/img/gallery/the-worlds-best-vacation-spots-that-are-all-inclusive/intro-1674504308.jpg'); 
    width: 450px;
    height: 250px;
    border-radius: 15px;
}
.img-box-footer{
    background-image: url('https://www.explore.com/img/gallery/the-worlds-best-vacation-spots-that-are-all-inclusive/intro-1674504308.jpg'); 
    width: 450px;
    height: 500px;
    border-radius: 15px;
}

.carousel-item img {
    /* Make sure image is below overlay */
    position: relative;
    z-index: 0;
    /* Optionally add vintage style filter */
    filter: sepia(0.2) contrast(0.8) brightness(0.9);
}

/* Ensure captions appear on top of overlay */
.carousel-caption {
    position: relative;
    z-index: 2;
    color: #f5dede;
    margin-top: -200px;
}


.carousel-fixed-height {
    height: 500px;
}

.carousel-fixed-height .carousel-item img {
    object-fit: cover;
    height: 700px;
    width: 100%;
}

.sliderheading {
    font-size: 50px;
    color: #f5f1f1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.sliderdescription {
    font-size: 30px;
    color: #f5f1f1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);

}

.cardssection {
    margin-top: 200px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    flex: 1 1 calc(25% - 20px);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .overlay {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* default dark overlay */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.card:hover::before {
    background-color: rgba(0, 0, 0, 0.6);
    /* darker on hover */
}

@media (max-width: 992px) {
    .card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .card {
        flex: 1 1 100%;
    }
}

.reviewssection {
    margin-top: 200px;
}

.review-section {
    height: 700px;
    background-image: url('https://wallpapercave.com/wp/wp3672147.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.Review-btn {
    width: 300px;
    height: 70px;
    font-size: 20px;
    color: #864100;
    border-radius: 15px;
    opacity: 0.96;
    background-color: #f5dede;
    border: 2px solid #864100;
}

.Review-btn:hover {
    width: 300px;
    height: 70px;
    font-size: 20px;
    color: white;
    border-radius: 15px;
    opacity: 0.96;
    background-color: rgb(226, 226, 226);
    border: 2px solid rgb(75, 74, 74);
    background-color: rgba(0, 0, 0, 0.3);
    /* default dark overlay */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.Review-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.Reviewcard {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    flex: 1 1 calc(25% - 20px);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Reviewcard .overlay {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.Reviewcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* default dark overlay */
    transition: background-color 0.3s ease;
    z-index: 1;
}

.Reviewcard:hover::before {
    background-color: rgba(0, 0, 0, 0.6);
    /* darker on hover */
}

@media (max-width: 992px) {
    .Reviewcard {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .Reviewcard {
        flex: 1 1 100%;
    }
}

.contentsection {
    margin-top: 200px;
}

footer {
    margin-top: 150px;
    background-color: antiquewhite;
}