/* Banner Section */
.accommodation-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.accommodation-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.accommodation-banner h1 {
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.accommodation-banner .subheading {
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

/* Book Now Button */
.book-now {
    background-color: white;
    color: black;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.book-now:hover {
    color: darkred;
}

/* Description Section */
.accommodation-description {
    background-color: black;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}


.section-heading {
    text-align: center;
    font-size: 32px; /* Increased font size */
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 3px; /* Adds spacing between letters */
    text-transform: uppercase;
    padding: 20px; /* Makes text uppercase for emphasis */
}


/* Features Container */
.features-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
    flex-wrap: wrap;
}

/* Individual Feature Block */
.feature {
    text-align: center;
    width: 262px;
}

.feature img {
    width: 262px;
    height: 303px;
    object-fit: cover; /* Ensures the image fills the dimensions properly */
    border-radius: 8px; /* Optional: Adds rounded corners */
}

.feature p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Section Title with Underlines */
.section-title {
    text-align: center;
    margin: 40px 0;
}

.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0;
}

.section-title hr {
    width: 100px;
    height: 3px;
    background-color: black;
    border: none;
    margin: 10px auto;
}


/* Glampsite Container - Reduce Width & Add Extra Space */
.glampsite-container {
    max-width: 900px; /* Reduced width */
    margin: 40px auto; /* Extra space outside */
    padding: 20px;
}

/* Increase the gap between the two columns */
.row.align-items-center {
    gap: 50px; /* Adds space between left and right images */
    justify-content: center;
    padding: 0px 25px; /* Ensures better centering */
}

/* Glampsite Heading */
.glampsite-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Glampsite Image */
.glampsite-image {
    width: 100%;
    height: 280px; /* Adjusted height */
    object-fit: cover;
    object-position: 50% 50%;
    margin-bottom: 15px;
}

/* Middle Paragraph */
.glampsite-middle-text {
    text-align: center;
    margin: 0px auto; /* Increased spacing */
    max-width: 700px; /* Adjusted for better centering */
    font-size: 16px;
    line-height: 1.6;
}

/* Availability Button */
.availability-btn {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin-top: 20px; /* Increased top margin */
}

.availability-btn:hover {
    color: darkred;
    border-color: darkred;
}


/* Dome Section - Reduce Width & Add Outer Spacing */
.dome-section {
    max-width: 1000px; /* Adjust width */
    margin: 0px auto; /* Extra space outside */
    padding: 25px;
}

/* Ensure side-by-side layout with increased middle space */
.dome-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* More space between columns */
    gap: 80px; /* Increased space between left & right */
}

/* Individual Dome Column */
.dome-column {
    flex: 1;
    max-width: 48%; /* Ensure columns don’t shrink too much */
}

/* Dome Titles */
.dome-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Dome Images */
.dome-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 50% 50%;
    margin-bottom: 15px;
}

/* Dome Description */
.dome-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Availability Button */
.check-availability-btn {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.check-availability-btn:hover {
    color: darkred;
    border-color: darkred;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .dome-wrapper {
        flex-direction: column;
        gap: 40px; /* Reduce gap on small screens */
    }
    .dome-column {
        max-width: 100%;
    }
}




/* Centering the button */
.book-now-container {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* Adjust spacing */
}

/* Centering the button */
.book-now-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px; /* Adjust spacing */
}

/* Book Now Button */
.book-now-btn {
    background-color: darkred;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

/* Hover Effect */
.book-now-btn:hover {
    background-color: lightblue;
    color: black;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .row.align-items-center {
        gap: 10px; /* Reduces gap for mobile screens */
        padding: 0px 15px; /* Adjusted padding for better alignment */
    }
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .accommodation-banner h1 {
        font-size: 32px; /* Reduced size for tablets */
        white-space: normal; /* Allows text wrapping */
        padding: 0 15px; /* Adds padding for better spacing */
    }
}

@media (max-width: 480px) {
    .accommodation-banner h1 {
        font-size: 24px; /* Smaller text for mobile */
        white-space: normal; 
        padding: 0 10px;
    }
}


