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

:root {
    --primary-blue: #150A62;
    --accent-blue: #37A1E4;
    --black-text: #0c2339;
    --body-text: #4e5c79;
    --blue-text: #053864;
    --dark-green: #2E9868;
    --light-green-background: #E6F4F0;
    --grey-blue: #9DB0C3;
}


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

body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    align-items: center;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(239, 239, 239);
    position: fixed;
    top: 0;
    padding: 10px 0px;
    width: 100vw;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background-color: rgb(239, 239, 239);
    color: #000;
    transform: translateY(0);
}


.logo img {
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: var(--black-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}


.auth-links a {
    text-decoration: none;
    color: var(--black-text);
    font-weight: bold;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {

    .nav-links,
    .auth-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* Ensure all images have the same height */
/* Swiper Container */
.swiper-container {
    width: 100%;
    height: 800px;
    /* Set a fixed height */
    overflow: hidden;
    /* Prevent overflow that causes scrollbar */
    box-sizing: border-box;
    /* Prevent extra spacing causing overflow */
    position: relative;
}

/* Swiper Slide */
.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #000;
    /* Set background for text visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure images fit the height without stretching */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image maintains aspect ratio */
}

/* Styling for text overlay */
.swiper-slide .slide-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
}

.swiper-slide h2 {
    font-size: 36px;
    margin: 0;
}

.swiper-slide p {
    font-size: 18px;
    margin: 10px 0;
}

.swiper-slide .cta-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #EE8720;
    color: #150A62;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    /* Adjust this value as needed to place pagination right above the bottom */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Responsive styles for wider screens */
@media (min-width: 1200px) {
    .swiper-container {
        height: 700px;
    }

    .swiper-slide h2 {
        font-size: 48px;
    }

    .swiper-slide p {
        font-size: 22px;
    }

    .swiper-slide .cta-button {
        padding: 6px 24px;
        font-size: 18px;
    }

    .swiper-pagination {
        bottom: 5px;
        /* Make sure it’s closer on mobile */
    }
}

/* Responsive styles for smaller laptops */
@media (max-width: 1199px) and (min-width: 992px) {
    .swiper-container {
        height: 700px;
    }

    .swiper-slide h2 {
        font-size: 32px;
    }

    .swiper-slide p {
        font-size: 16px;
    }

    .swiper-slide .cta-button {
        padding: 6px 20px;
        font-size: 16px;
    }
}

/* Responsive styles for tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .swiper-container {
        height: 600px;
    }

    .swiper-slide h2 {
        font-size: 28px;
    }

    .swiper-slide p {
        font-size: 16px;
    }

    .swiper-slide .cta-button {
        padding: 6px 18px;
    }
}

/* Responsive styles for mobile devices */
@media (max-width: 767px) {
    .swiper-container {
        height: 400px;
        /* Adjust height for mobile */
    }

    .swiper-slide h2 {
        font-size: 24px;
    }

    .swiper-slide p {
        font-size: 14px;
    }

    .swiper-slide .cta-button {
        padding: 8px 16px;
    }
}



#destinations{
    background: #fefefe;
}

#packages{
    background:#fafafa;
}
#services{
    background:#F2F5F4;
}


#booking{
    /* background: #EFEFEF; */
    background:#fafafa;
    padding-top:140px;
}

footer {
    background: var(--primary-blue);
    justify-items:center;
    align-items: center;
    width: 100%;
    text-align:center;
    
}

.company-wrapper {
    padding: 80px 0px;
    display: inline-flex;
    justify-content: space-between;
    gap:100px;
    text-align:left;
    font-size: 16px;
    width:80%;

}


@media (max-width: 768px) {
    .company-wrapper {
        padding: 20px 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap:30px;
    }
}

.company p {
    line-height: 2.5;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6)
}

.logo-white {
    height: 48px;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

footer ul li a {
    line-height: 2.5;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: all ease 0.4s;
}


footer ul li a:hover {
    color: #fefefe;
}

footer .title {
    font-weight: bold;
    color: #fefefe;
    font-size: 14px;
}


.legal {
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding: 20px 120px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .legal {
        padding: 20px 10px;
        text-align:center;
        display:flex;
        flex-direction: column;
        gap:20px;
        justify-content: center;
        justify-items: center;
        align-items: center;
    }
}

.legal .copyright {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .legal .copyright{
        text-align:center;
        display:inline;
        margin:0 auto;
    }
}


.social{
    display:flex;
    gap:30px;
    margin:20px 0px;
}

.social i{
    font-size:24px;
    color: #37A1E4;
}

.developer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .developer{
        font-size:12px;
    }
}

.developer a {
    font-weight: bold;
}


.section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5em;
    /* Large heading */
    margin-bottom: 20px;
}


.grid-container {
    display: flex;
    /* Use flexbox for centering */
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    justify-content: center;
    /* Center items horizontally */
    gap: 40px;
}

.grid-item {
    width: 300px;
    background-color: #f9f9f9;
    /* Light background for items */
    border-radius: 8px;
    /* Rounded corners */
    overflow: hidden;
    /* Prevent overflow from images */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    transition: transform 0.3s;
    /* Smooth transition for hover effect */
}

.grid-item:hover {
    transform: scale(1.05);
    /* Scale effect on hover */
}

.grid-item img {
    width: 100%;
    /* Responsive image */
    height: 200px;
    /* Maintain aspect ratio */
    object-fit: cover;
}

.grid-item h3 {
    font-size: 1.5em;
    /* Heading size */
    margin: 15px 0 10px;
    /* Margin for spacing */
}

.grid-item p {
    font-size: 1em;
    /* Normal text size */
    margin: 10px 20px;
    /* Margin for spacing */
}


/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 30px 15px;
        /* Adjust padding for mobile */
    }

    h2 {
        font-size: 2em;
        /* Smaller heading on mobile */
    }

    .grid-item h3 {
        font-size: 1.2em;
        /* Smaller subheading */
    }

    .grid-item p {
        font-size: 0.9em;
        /* Smaller paragraph text */
    }

    .btn-secondary {
        padding: 8px 16px;
        /* Smaller button */
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8em;
        /* Further reduce heading size on very small screens */
    }

    .grid-item h3 {
        font-size: 1em;
        /* Further reduce subheading */
    }

    .grid-item p {
        font-size: 0.8em;
        /* Further reduce paragraph text */
    }
}





.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 800px;
    margin: 0 auto;
    background: #37A1E4;
    box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.full-width {
    grid-column: span 2;
    /* For single fields like Name and Preferences */
}

.half-width {
    grid-column: span 1;
    /* For fields that share space, like Email and Adults */
}

@media (max-width: 768px) {
    .half-width{
        grid-column: span 2;
    }
}


label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea {
    padding: 10px;
    border: none;
    border-radius: 1px;
    font-size: 1em;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    outline: 1px solid #150A62;
}

input[type="date"] {
    cursor: pointer;
}

@media (max-width: 768px) {
    input[type="date"] {
        display:block;
    }
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #EE8720;
    color: #150A62;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    grid-column: span 2;

}

button:hover {
    background-color: #e65c00;
}


.btn-secondary {
    display: inline-block;
    padding: 6px 20px;
    margin: 20px 0px;
    background-color: #EE8720;
    /* Button background */
    color: #150A62;
    /* Button text color */
    border-radius: 5px;
    /* Rounded corners */
    text-decoration: none;
    /* No underline */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.btn-secondary:hover {
    background-color: #e65c00;
    /* Darker shade on hover */
}


@media (min-width: 768px) {
    .form-container {
        grid-template-columns: 1fr 1fr;
        /* Two columns layout for desktop screens */
    }

    .half-width {
        grid-column: span 1;
        /* Each field takes half width */
    }

    .full-width {
        grid-column: span 2;
        /* Full width for Name and Preferences */
    }

    button {
        font-size: 1.1em;
        grid-column: span 2;
        /* Full width button on larger screens */
    }
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        /* Single column layout for mobile screens */
    }

    button {
        font-size: 1em;
    }
}

.book-now {
    background: #150A62;
    color: #fefefe;
    padding: 6px 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .book-now {
        display: none;
    }
}


.mobile-book-now {
    display: none;
}

@media (max-width: 768px) {
    .mobile-book-now {
        display: block;
        border: 1px solid #e65c00;
        padding: 6px 20px;
        border-radius: 4px;
    }
}