body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
    text-align: center;
}

header {
    background: url('Images/Entance.webp') no-repeat center center / cover; /* Correct syntax */
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.booking-btn {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500); /* Gradient: sunrise yellow to orange */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add a shadow for depth */
    transition: all 0.3s ease; /* Smooth hover effect */
    margin-top: 20px;
}

.booking-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700); /* Reverse gradient on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional overlay for better text readability */
}

.header-content {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Pacifico', cursive; /* Example font for the heading */
    font-size: 4em; /* Adjust the size of the heading */
    color: #FFD700; /* Optional: Change the color */
    margin: 0;
}

header p {
    font-family: 'Lexend', sans-serif; /* Example font for the paragraph */
    font-size: 1.5em; /* Adjust the size of the paragraph */
    color: #fff; /* Optional: Change the color */
    margin-bottom: 20px;
}

section {
    padding: 60px 20px;
}

.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
}

.carousel-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
}

.carousel-container {
    flex: 1;
    max-width: 70%; /* Make the carousel smaller */
}

.carousel {
    position: relative;
    overflow: hidden; /* Ensures only the active image is visible */
    width: 100%;
    max-width: 500px; /* Adjust the size of the carousel */
    margin: 0 auto; /* Center the carousel */
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0; /* Hide all images by default */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for image changes */
}

.carousel img.active {
    display: block;
}

.carousel-text {
    flex: 1;
    max-width: 50%; /* Allocate space for the text */
    padding-left: 20px;
    text-align: left;
}

.carousel-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.carousel-text p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2em;
    color: #fff;
    line-height: 1.6;
}

/* Specific styles for the "Activities" carousel section */
.carousel-section.activities {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between text and carousel */
    padding: 40px 20px;
}

.carousel-section.activities .carousel-text {
    flex: 1;
    max-width: 40%; /* Allocate space for the text */
    padding-right: 20px; /* Add spacing between text and carousel */
    text-align: left;
}

.carousel-section.activities .carousel-container {
    flex: 1;
    max-width: 60%; /* Allocate space for the carousel */
    text-align: right; /* Align the carousel to the right */
}

.carousel-section.activities .carousel img {
    width: 100%; /* Adjust the size of the images */
    max-width: 500px; /* Limit the maximum width */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add a shadow for depth */
    display: block; /* Ensure the active image is displayed */
}

.carousel {
    position: relative;
    overflow: hidden; /* Ensures only the active image is visible */
    width: 100%;
    max-width: 500px; /* Adjust the size of the carousel */
    margin: 0 auto; /* Center the carousel */
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0; /* Hide all images by default */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for image changes */
}

.carousel img.active {
    opacity: 1; /* Show only the active image */
    position: relative; /* Ensure the active image is properly positioned */
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.carousel button.prev {
    left: 10px; /* Position the "Previous" button on the left */
}

.carousel button.next {
    right: 10px; /* Position the "Next" button on the right */
}

/* Specific styles for the "Bedrooms" carousel section */
.carousel-section.bedrooms {
    background: url('Images/WhatsApp Image 2025-03-02 at 12.40.54 PM (6).jpg') no-repeat center center / cover; /* Add background image */
    padding: 40px 20px;
    color: #fff; /* Ensure text is readable on the background */
    position: relative;
}

.carousel-section.bedrooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a dark overlay for better text readability */
    z-index: 1;
}

.carousel-section.bedrooms .carousel-text,
.carousel-section.bedrooms .carousel-container {
    position: relative;
    z-index: 2; /* Ensure text and carousel are above the overlay */
}

.carousel-section.bedrooms {
    display: flex;
    flex-direction: column; /* Stack text and carousel vertically */
    align-items: center;
    padding: 40px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

.carousel-section.bedrooms .carousel-text {
    text-align: center;
    margin-bottom: 20px;
}

.carousel-section.bedrooms .carousel-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5em;
    color: #FFD700; /* Sunrise yellow */
    margin-bottom: 10px;
}

.carousel-section.bedrooms .carousel-text p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2em;
    color: #fff;
    line-height: 1.6;
}

.carousel-section.bedrooms .carousel-container {
    width: 100%;
    max-width: 800px; /* Limit the width of the carousel */
    margin: 0 auto;
}

.carousel-section.bedrooms .carousel img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add a shadow for depth */
    opacity: 0; /* Hide all images by default */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for image changes */
}

.carousel-section.bedrooms .carousel img.active {
    opacity: 1; /* Show only the active image */
    position: relative;
}

.carousel-section.bedrooms .carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.carousel-section.bedrooms .carousel button.prev {
    left: 10px; /* Position the "Previous" button on the left */
}

.carousel-section.bedrooms .carousel button.next {
    right: 10px; /* Position the "Next" button on the right */
}

.amenities-section {
    padding: 40px 20px;
    background-color: #111; /* Light background for contrast */
    text-align: center;
}

.amenities-section h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5em;
    color: #FFD700; /* Sunrise yellow */
    margin-bottom: 20px;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 20px;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity i {
    font-size: 2.5em;
    color: #FFA500; /* Sunrise orange */
    margin-bottom: 10px;
}

.amenity p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.2em;
    color: #fff;
}

.amenity:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: #222;
    color: #fff;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #FF4500;
    text-decoration: none;
    
}