
    /* Global styles */
    * {
        cursor: default;
        box-sizing: border-box;
    }
    body {
        font-family: myFirstFont;
        margin: 0;
        padding: 0;
        background-color: #ffffff;
    }

    header {
        font-family: myFirstFont;
        background-color: #ffffff;
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
    }

    @font-face {
        font-family: myFirstFont;
        src: url(Century\ Gothic.ttf);
    }
    @font-face {
        font-family: f2;
        src: url(Chadenia.ttf);
    }
    @font-face {
        font-family: f3;
        src: url(gothic\ medium.ttf);
    }
    @font-face {
        font-family: f4;
        src: url(Kristi.ttf);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    .navbar {
        width: 100%;
        background-color: #161616;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 5%;
        flex-wrap: wrap;
    }
    
    
    .navbar-links {
        display: flex;
        justify-content: space-between;
        flex-grow: 1;
    }
    
    .navbar a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        padding: 15px 20px;
        text-align: center;
        transition: background-color 0.3s ease;
    }
    
    .navbar a:hover {
        background-color: #a1f599;
        opacity: 0.8;
        border-radius: 5px;
    }
    
    /* Carousel */

    .slideshow-container {
        max-width: 100%;
        height: 433px;
        position: relative;
        margin: auto;
        overflow: hidden;
    }
    
    .slideshow-container1 {
        max-width: 100%;
        height: 433px;
        position: relative;
        margin: auto;
        overflow: hidden;
    }
    
    .mySlides {
        width: 100%;
        height: 100%; /* Ensure it takes the full height of the container */
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the container */
    }
    
    /* Gallery Section */
    .gallery {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
        flex-wrap: wrap;
        font-size: 46px;
    }

    .card {
        position: relative;
        width: 30%;
        max-width: 400px;
        text-align: center;
        overflow: hidden;
    }

    .card img {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    /* Always visible text */
    .info {
        position: absolute;
        text-align: center;
        bottom: 10px; 
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: white;
        font-family: 'f2', serif;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        width: 90%;
        margin-bottom: 7%;
        border-radius: 5px;
    }

    .info h1 {
        font-size:50px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .info p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Initially Hidden "See More" Button */
    .middle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    .card:hover img {
        opacity: 0.3;
    }

    .card:hover .middle {
        opacity: 1;
    }

    .card:hover .middle {
        opacity: 1;
    }

    .see-more {
        display: inline-block;
        padding: 8px 15px;
        background-color: #000000;
        color: white;
        font-size: 14px;
        text-decoration: none;
        border-radius: 3px;
    }

    .see-more:hover {
        background-color: #11410A;
        transition: 0.3s;
    }



    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        padding-top: 60px;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 60px;
        border: 1px solid #888;
        width: 90%;
        text-align: center;
    }

    .fix {
        z-index: 1;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close:hover {
        color: black;
    }

    /* Checkbox Hack */
    .checkbox {
        display: none;
    }

    .checkbox:checked + .modal {
        display: flex;
    }

    .Caption {
        font-family: f2;
        font-size: 80px;
        text-shadow: 8px 5px 5px black;
        color: white;
        position: absolute;
        left: 50%;
        top: 50%; /* Adjusted to center vertically */
        transform: translate(-50%, -50%);
        text-align: center; /* Keeps text centered inside the element */
        padding: 10px 20px;
        border-radius: 5px;
        width: 100%; /* Ensures the text block spans the width of the container */
    }
    .Caption2 {
        font-family: f4;
        font-size: 80px;
        text-shadow: 8px 5px 5px black;
        color: white;
        position: absolute;
        left: 50%;
        top: 50%; /* Adjusted to center vertically */
        transform: translate(-50%, -50%);
        text-align: center; /* Keeps text centered inside the element */
        padding: 10px 20px;
        border-radius: 5px;
        margin-top: 120px;
        width: 100%; /* Ensures the text block spans the width of the container */
    }
    .Caption1{
        font-family: f2;
        font-size: 80px;
        color: rgb(0, 15, 219);
        position: absolute;
        left: 50%;
        top: 20%; /* Adjusted to center vertically */
        transform: translate(-50%, -50%);
        text-align: center; /* Keeps text centered inside the element */
        border-radius: 5px;
        width: 100%; /* Ensures the text block spans the width of the container */
    }
    /* Travel Booking Section */
.travel-booking {
    padding: 40px 5%;
    background-color: #00000042;
    color: rgb(17, 17, 17);
}

.travel-booking h2 {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.booking-card {
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(243, 242, 242, 0.1);
}

.booking-image {
    width: 200px;
    height: 140px;
    object-fit: cover;
}

.booking-details {
    
    flex: 2;
    padding: 15px;
}

.booking-details h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.booking-info {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}

.star {
    color: gold;
    font-size: 20px;
}

/* Star Rating Section */
.star-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
}

.star {
    font-size: 30px;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.star.active,
.star:hover,
.star.hovered {
    color: gold;
    transform: scale(1.2) rotate(10deg);
}

.star.clicked {
    animation: bounce 0.3s;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@media screen and (max-width: 768px) {
    .booking-card {
        flex-direction: column;
        text-align: center;
    }

    .booking-image {
        width: 100%;
        height: 200px;
    }
}


    /* Media Queries for responsiveness */
    @media (max-width: 1200px) {
        .card {
            width: 45%; /* Change card width for medium screens */
        }
    }

    @media (max-width: 900px) {
        .nav-links a {
            font-size: 16px; /* Slightly smaller font size */
        }
        
        .card {
            width: 100%; /* Full width for small screens */
            margin-bottom: 20px;
        }
    }

    @media (max-width: 600px) {
        nav {
            flex-direction: column; /* Stack nav items vertically */
        }

        .nav-links {
            justify-content: center; /* Center nav links */
        }

        .border {
            font-size: 3em; /* Adjust font size for small screens */
            padding: 0 20px; /* Adjust padding */
        }

        p {
            font-size: 18px; /* Smaller paragraph font size */
        }
    }
