* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.header{
    background-color: #111827;
}
body { /* Corrected from .body to body as it targets the HTML body element */
    font-family: "Roboto", sans-serif;
    line-height: 1.8; /* Increased line-height for better readability */
    margin: 0; /* Explicitly ensure no default body margin */
    background-color: #111827;
}

.section-spacing {
    padding: 80px 20px;
    margin: 0 auto;
}

.container {
    max-width: 1200px; /* Or adjust based on your design's content width */
    margin: 0 auto;
    padding: 0 20px;/* Some padding on the sides for content */

}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #1b1c1d;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease; /* Smooth transition for background color */
}
.tab-btn {
    background-color: #fff;
}
.btn-secondary {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #218838; /* Darker green on hover */
}

.btn-ghost {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
    background-color: #fff;
    color: #fff;
}
/* Header */
.header {
    background-color:#111827;
    padding: 15px 0; 
    box-shadow: 0 2px 5px rgba(17, 17, 43, 0.1);
    position: sticky; 
    top: 0;
    z-index: 1000; 
    margin-bottom: 0; 
}

.header .container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

/* Logo Styling */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px; 
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.logo a span {
    color: #fff;
    font-size: 18px; 
    font-weight: bold;
    white-space: nowrap; 
    padding-left: 5px;
}

/* Hamburger Menu Styling */
.hamburger-menu {
    display: none; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #fff; 
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Animation for when menu is active (transforms into an 'X') */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(35deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0; 
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-35deg);
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

.nav-links li a {
    text-decoration: none;
    color: #fff; 
    font-weight: 400; 
    font-size: 16px;
    transition: color 0.3s ease, border-bottom 0.3s ease; 
    padding-bottom: 5px; 
    border-bottom: 2px solid transparent; 
}

.nav-links li a:hover {
    color: #b4c7d4; 
    border-bottom: 2px solid #fff; 
}

/* Specific styling for the "Sign Up" button in the nav to prevent underline */
.nav-links li:last-child .btn-primary {
    border-bottom: none;
    padding-bottom: 10px; 
}


/* Hero Section */
.hero-section {
    background: url("images/bk.jpg") no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 50px 20px 0; 
    position: relative; 
    z-index: 1;
    min-height: 500px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    margin-top: 0; 
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
/* ... (existing CSS for .hero-section and .hero-content) ... */

.booking-form-container {
    background-color: rgba(10, 32, 46, 0.9);
    padding: 0; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(42, 40, 59, 0.3);
    position: absolute;
    
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px); 
    max-width: 900px;
    z-index: 50;
    overflow: visible; 
    display: flex; 
    flex-direction: column; 
}

/* Styles for the top row (Tabs) */
.booking-tabs {
    display: flex;
    justify-content: flex-start; 
    background-color: rgba(41, 40, 51, 0.2); 
    padding: 10px 30px; 
    border-bottom: 1px solid rgba(2, 0, 0, 0.1); 
}

.booking-tabs .tab-btn {
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px; 
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
    white-space: nowrap; 
}

.booking-tabs .tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1); 
}

.booking-tabs .tab-btn.active {
    background-color: #007bff; 
    font-weight: 600; 
    color: #fff;
}

.booking-input-area {
    padding: 20px 30px; 
}

.booking-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    gap: 15px; 
    flex-wrap: wrap; 
}

.booking-form .form-group {
    flex: 1;
    min-width: 150px; 
    text-align: left;
}

.booking-form label {
    display: block;
    font-size: 13px;
    color: #b4c7d4;
    margin-bottom: 5px;
    font-weight: 300;
}

.booking-form input[type="text"],
.booking-form input[type="date"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: #fff; 
}

/* Styles for Guest input with plus/minus */
.booking-form .guest-group .guest-input {
    display: flex;
    align-items: center;
    background-color: #fff; 
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden; 
}
.booking-form .guest-group .guest-control {
    background-color: #f8f8f8; 
    border: none;
    color: #333;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.booking-form .guest-group .guest-control:hover {
    background-color: #e0e0e0;
}


.counter button {
  padding: 5px 10px;
  font-size: 18px;
  cursor: pointer;
}

.counter span {
  margin: 0 10px;
  font-size: 16px;
}
/* Search Button Styling */
.booking-form .search-btn { 
    flex-shrink: 0;
    padding: 10px 25px;
    background-color: #007bff; 
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-end; 
}

.booking-form .search-btn:hover {
    background-color: #0056b3;
}

/* Responsive adjustments for booking form */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 0; 
        bottom: 20px;
        width: calc(100% - 40px);
    }

    .booking-tabs {
        padding: 10px 20px; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 5px; 
    }

    .booking-tabs .tab-btn {
        font-size: 13px; 
        padding: 6px 10px;
    }

    .booking-input-area {
        padding: 20px; 
    }

    .booking-form {
        flex-direction: column; 
        align-items: stretch;
        gap: 15px;
    }

    .booking-form .form-group {
        min-width: auto;
    }

    .booking-form input[type="text"],
    .booking-form input[type="date"] {
        padding: 10px;
    }

    .booking-form .guest-group .guest-input input {
        padding: 10px 5px; 
    }

    .booking-form .guest-group .guest-control {
        padding: 10px 15px; 
    }

    .booking-form .search-btn {
        width: 100%;
        padding: 12px 25px;
    }
}
main {
    padding-top: 0px; }

    /* Hero Section */
.hero-section {
    background: url("images/bk.jpg") no-repeat center center/cover;
    position: relative;
    z-index: 1;
    min-height: 550px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: center;
    padding-bottom: 80px; 
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Booking Form Container */
.booking-form-container {
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border-top: 2px solid #fff; 
    border-radius: 15px;
    padding: 0;
    max-width: 1000px;
    width: 90%;
    position: absolute;
    bottom: -2px; 
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 50;
    overflow: hidden;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row; 
        justify-content: space-between; 
    }

    .hamburger-menu {
        display: flex; 
    }

    .nav {
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: #090f1b; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        max-height: 0; 
        transition: max-height 0.3s ease-out; 
        z-index: 999; 
    }

    .nav.active {
        max-height: 500px; 
    }

    .nav-links {
        flex-direction: column;
        padding: 20px 0;
        align-items: center;
    }

    .nav-links li {
        margin-bottom: 15px; 
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    /* Adjustments for nav links on mobile when active */
    .nav-links li a {
        padding-bottom: 0; 
        border-bottom: none; 
    }

    .nav-links li a:hover {
        color: #b4c7d4; 
        background-color: rgba(255,255,255,0.1); 
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-form button {
        width: 100%; 
    }

    .destination-cards {
        grid-template-columns: 1fr; 
    }
    main {
        padding-top: 0px; 
    }
}
 General Body and HTML Styles
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111827; 
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; 

} 

/* Discover Dream Destinations Section */
.discover-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px 50px; 
    background-color: #111827;
    position: relative;
    z-index: 1;
    height: 800px;
  
}
.explore-text {
    font-size: 0.8em;
    color: #cbd5e1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.discover-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    max-width: 700px;
}

.discover-section .subtitle {
    font-size: 1em;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Panorama Slider Customization (to integrate with your design) */
.panorama-slider {
    width: 100%;
    max-width: 1500px; 
    height: 500px; 
    margin-bottom: 30px; 
    position: relative;
   
}

.panorama-slider .swiper {
    width: 100%;
    height: 100%;
    overflow: visible; 
}

.panorama-slider .swiper-slide {
    width: 300px; 
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(44, 50, 73, 0.4);
    transition: box-shadow 0.3s ease;
    cursor: grab;
}

.panorama-slider .swiper-slide.swiper-slide-active {
    box-shadow: 0 0 0 5px #05263b 0 15px 40px rgba(0, 0, 0, 0.6); 
    cursor: default;
}


.panorama-slider .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.3s ease-in-out;
}

.panorama-slider .swiper-slide.swiper-slide-active .slide-image {
    filter: brightness(1); 
}
/* Item Info Overlay (like your previous .item-overlay) */
.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(100%); 
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
}

.item-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5em;
}

.item-info p {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #ccc;
}

.item-info .overlay-link {
    display: inline-block;
    color: #76a1e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.item-info .overlay-link:hover {
    color: #5bb2c4;
}

/* Show overlay for active slide */
.panorama-slider .swiper-slide.swiper-slide-active .item-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* Swiper Pagination (dots below slider) */
.panorama-slider .swiper-pagination {
    position: absolute;
    bottom: 10px; 
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.panorama-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5); 
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: background-color 0.3s, width 0.3s;
}

.panorama-slider .swiper-pagination-bullet-active {
    background-color: #111827; 
    width: 25px; 
    border-radius: 5px; 
}
/* Popular Packages Section (Bottom part of the design) */
.view-all-btn {
    display: inline-block;
    background-color: #fff;
    color: #1a1a2e; 
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 200, 255, 0.3);
}

.view-all-btn:hover {
    background-color: #42e0ff;
    transform: translateY(-2px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1000px) {
    .panorama-slider {
        height: 400px;
    }
    .panorama-slider .swiper-slide {
        width: 220px;
        height: 330px;
    }
}

@media (max-width: 768px) {
    .panorama-slider {
        height: 350px;
    }
    .panorama-slider .swiper-slide {
        width: 180px;
        height: 270px;
    }
    .discover-section h2, .packages-section h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .panorama-slider {
        height: 280px;
    }
    .panorama-slider .swiper-slide {
        width: 140px;
        height: 210px;
    }
    .item-info {
        padding: 15px;
    }
    .item-info h3 {
        font-size: 1.2em;
    }
    .item-info p {
        font-size: 0.8em;
    }
    .discover-section h2, .packages-section h2 {
        font-size: 1.8em;
    }
    .view-all-btn {
        padding: 10px 25px;
        font-size: 1em;
    }
}
