/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #f4a261;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

header img {
    height: 50px;
}

nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('http://bdeltd.net/dunehorizons.com/asset/Cover.jpg');
    height: 330px;
    background-size: cover;
    color: black;
    text-align: center;
    padding: 100px 20px;
}
.hero h2 {
    font-size: 36px;
}
.hero p {
    font-size: 18px;
}
.cta-button {
    background-color: #e76f51;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.cta-button:hover {
    background-color: #d9573b;
}

/* About Section */
.about {
    padding: 20px;
    text-align: center;
}
.about h2 {
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 20px;
    text-align: center;
}
.gallery h2 {
    margin-bottom: 20px;
}
.slider {
    position: relative;
    max-width: 50%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}
.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); /* Flexible layout */
    gap: 5px; /* Space between thumbnails */
    justify-content: center;
}
.thumbnail {
    width: 40px;
    height: 60px;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}
.thumbnail:hover {
    border-color: #f4a261;
}
.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.thumbnail img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}
.gallery {
    padding: 20px;
    text-align: center;
}
.gallery h2 {
    margin-bottom: 20px;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-content {
    padding: 15px;
    text-align: left;
}
.gallery-content h3 {
    margin: 0;
    font-size: 18px;
    color: #264653;
}
.gallery-content p {
    margin: 10px 0;
    color: #555;
    font-size: 14px;
}
.gallery-content button {
    background-color: #2a9d8f;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.gallery-content button:hover {
    background-color: #21867a;
}
.gallery-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.gallery-details {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    width: 80%;
    max-width: 500px;
}
.gallery-details h3 {
    margin-top: 0;
    color: #2a9d8f;
}
.gallery-details p {
    margin: 10px 0;
    color: #555;
    font-size: 14px;
}
.gallery-details button {
    background: #e76f51;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.gallery-details button:hover {
    background: #d9573b;
}
/* Package Section */
.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}
.package {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    text-align: center;
}
.package:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.package h3 {
    margin: 0 0 10px;
    color: #2a9d8f;
}
.package p {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
}
.package button {
    background-color: #2a9d8f;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    display: block;
    margin: 10px auto;
}
.package button:hover {
    background-color: #21867a;
}
.package .more-details {
    background-color: #f4a261;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid white;
}
.package .more-details:hover {
    background-color: #e76f51;
    color: white;
}

/* Booking Section */
.booking {
    padding: 20px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.booking h2 {
    margin-bottom: 20px;
    color: #264653;
}
.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
.booking-form input,
.booking-form select {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.booking-form button {
    background-color: #03541a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.booking-form button:hover {
    background-color: #21867a;
}

/* Contact Section */
.contact {
    padding: 20px;
    background-color: #f1f1f1;
    text-align: center;
}

footer {
    background-color: #264653;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Custom Prompt Section */
.custom-prompt {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.custom-prompt-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-prompt-content h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.custom-prompt-content label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #555;
}

.custom-prompt-content input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom-prompt-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.custom-prompt-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-prompt-buttons button:first-child {
    background-color: #2a9d8f;
    color: white;
}

.custom-prompt-buttons button:first-child:hover {
    background-color: #21867a;
}

.custom-prompt-buttons button:last-child {
    background-color: #e76f51;
    color: white;
}

.custom-prompt-buttons button:last-child:hover {
    background-color: #d9573b;
}

/* Mobile Responsive Section */
@media (max-width: 768px) {
    .thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller thumbnails */
        gap: 10px; /* Reduce gap */
    }

    .thumbnail img {
        border-radius: 8px; /* Slightly smaller border radius */
    }
}


@media (max-width: 480px) {
    .thumbnails {
        display: flex;
        overflow-x: auto; /* Enable horizontal scrolling */
        gap: 5px;
    }

    .thumbnail {
        flex: 0 0 auto; /* Prevent shrinking */
        width: 40px;
    }
}
