/* General Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Ensures that the page always has enough height */
html {
    height: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 500px;
}


/* Location Carousel - Full screen images */
.location-carousel .carousel-item img {
    object-fit: cover;  /* Crop to fill the area */
    width: 100%;
    height: 500px;  /* Adjust based on your layout */
}

/* Room Detail Page - Show full image */
.room-detail-carousel .carousel-item img {
    object-fit: contain; /* Ensure the full image is visible */
    width: 100%;
    height: 500px;  /* Keeps the images uniform */
    background-color: #f8f9fa; /* Adds background for empty space */
}


.img-fluid {
    max-height: 40px;
}

.contact-owner a {
    margin-right: 10px;
}

.description-section ul {
    list-style: none;
    padding: 0;
}

.description-section ul li::before {
    content: "• ";
    color: #007bff;
    font-weight: bold;
}

.btn-check-availability {
    margin-top: 20px;
}

.availability-form {
    margin-top: 20px;
}

/* Booking Form Section */
.booking-form {
    margin: -50px auto 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
}

.booking-form .row {
    gap: 10px;
}

.booking-form input,
.booking-form button {
    height: 45px;
    border-radius: 5px;
}

.booking-form button {
    background-color: #007bff;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.booking-form button:hover {
    background-color: #0056b3;
}

/* Location Cards Section */
.card {
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%
}

.card:hover {
    transform: scale(1.05);
}

/* Make sure card-body expands to fill remaining space */
.card-body {
    flex-grow: 1;
}

/* Ensure buttons align at the bottom */
.card-footer {
    text-align: center;
    margin-top: auto;
}

/* Fix for cropped images */
.card-img-top, 
.rooms .card-img-top {
    width: 100%;
    height: 500px; /* Ensure full image visibility */
    object-fit: cover; /* Prevent cropping */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .location-card {
        height: 250px;
    }

    .booking-form input,
    .booking-form button {
        font-size: 0.85rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

/* Search Form */
form.bg-light {
    margin-bottom: 20px;
}

form label {
    font-weight: bold;
    color: #555;
}

form button {
    width: 150px;
    font-weight: bold;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

.card p {
    margin-bottom: 5px;
}

.room-amenities {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.room-amenities h3 {
    margin-bottom: 20px;
}

.amenity {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 5px 0;
}

.amenity i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

/* Google Maps Section */
iframe {
    border-radius: 10px;
    margin-top: 20px;
}

/* Amenities */
.room-amenities img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer {
    background-color: #000; /* Footer background color */
    color: white;
    padding: 10px 0; /* Reduce vertical padding */
    text-align: center;
    font-size: 14px; /* Slightly smaller font for compact footer */
    width: 100%;;
    margin-top: auto; /* Ensures footer is pushed to the bottom */
    /*position: relative;*/ /* Prevents overlapping */
    /*bottom: 0;*/
}

.social-icons {
    margin: 5px 0; /* Reduce space above and below icons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Add spacing between icons */
}

.social-icons a {
    font-size: 1.8rem; /* Adjust icon size */
    color: inherit; /* Default color */
}

.social-icons .bi-facebook {
    color: #3B5998; /* Facebook blue */
}

.social-icons .bi-instagram {
    color: #E4405F; /* Instagram pink */
}

.social-icons .bi-whatsapp {
    color: #25D366; /* WhatsApp green */
}

.social-icons a:hover {
    opacity: 0.8;
}

p {
    margin: 2px 0; /* Reduce space between text rows */
}

/* Navbar background color and link styles */
.navbar {
    background-color: #e3f2fd; /* Soft blue */
    padding: 15x 30px;
    display: flex;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation links to the right */
.nav-links {
    margin-left: auto; /* Push links to the right */
}

.navbar .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #007bff;
}

/* Default logo size for desktop */
.logo-img {
    height: 90px; /* Adjust size */
    width: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center everything */
        justify-content: center; /* Ensure perfect centering */
        text-align: center;
    }

    .navbar-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 70px; /* Adjust size for mobile */
        max-width: 100%; /* Ensures proper scaling */
        display: block;
        margin: 0 auto; /* Forces centering */
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

/* Room Cards Section */
.rooms .card {
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    border-radius: 10px;
}

.rooms .card:hover {
    transform: scale(1.05);
}

/*
.rooms .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}*/

.room-detail-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Prevents overly tall images */
    object-fit: contain; /* Ensures full image is visible */
}

.rooms .carousel-control-prev-icon,
.rooms .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.house-rules {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.house-rules .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.house-rules i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.breadcrumb {
    background-color: transparent;
    font-size: 0.95rem;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    color: #888;  /* Light gray separator */
}




