/* Add styles here */


    :root {
        --primary-color: #ff385c;
        --text-dark: #222222;
        --text-light: #717171;
        --border-color: #dddddd;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
    }

    .navbar {
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.08);
        padding: 1rem 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    #navbar-logo {
        height: 80px;
        border-radius: 8px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .btn-check-availability {
        padding: 0.75rem 2rem;
    }

    @media (max-width: 576px) {
        .btn-check-availability {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }

    /* Hero Section */
    .hero-section {
        /* 1. Full Width & Height */
        width: 100%;
        min-height: 400px; /* Ensure it has a good height */
        position: relative; /* Crucial for positioning the ::before overlay */
        padding: 8rem 0;
        margin-bottom: 3rem;
        color: white; /* Ensure text remains white */
        display: flex; /* For centering content inside */
        align-items: center;
    
        /* 2. Image Positioning & Scaling */
        background: url("../assets/images/bedroom3.jpeg") no-repeat center center/cover;
        /* Shorthand for:
        background-image: url("../assets/images/bedroom3.jpeg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; */
        
        /* Ensure the background is fixed if you want a parallax effect, or 'scroll' if not */
        background-attachment: scroll; 
        z-index: 1; /* Ensure hero content is above overlay */
    }
    
    /* --- Opacity Overlay (The key to highlighting text) --- */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Black color with 40% opacity */
        z-index: 2; /* Place overlay above background image */
    }
    
    /* Ensure content is readable above the overlay */
    .hero-section .container {
        position: relative;
        z-index: 3; /* Must be higher than the overlay (z-index: 2) */
    }
    /* Hero Section end */

    /* .hero-section {
        background: url("../assets/images/bedroom3.jpeg");
        background-repeat: no-repeat;
        width:100%;
        color: white;
        padding: 8rem 0;
        margin-bottom: 3rem;
        display: flex;
        align-items: center;
        min-height: 400px;
    } */

    .hero-section h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-section p {
        font-size: 1.2rem;
        opacity: 0.95;
        text-align: center;
    }

    .property-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .property-description {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 1rem;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .gallery-grid img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s;
        display: block;
    }

    .gallery-item:first-child img {
        height: 400px;
    }

    .gallery-grid img:hover {
        transform: scale(1.05);
    }

    /* Hide photos after the 4th one by default */
    .gallery-item:nth-child(n+5) {
        display: none;
    }

    /* Show all photos when show-all class is added */
    .gallery-grid.show-all .gallery-item:nth-child(n+5) {
        display: block;
    }

    .photo-label {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        z-index: 5;
    }

    .see-all-photos-btn {
        display: block;
        margin: 2rem auto 3rem;
        background: #ff385c;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
    }

    .see-all-photos-btn:hover {
        background: #d90b45;
        transform: translateY(-2px);
    }

    .gallery-container {
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--border-color);
    }

    .booking-card{
        padding-right: 10px;
        text-align: center;
    }

    .amenity-item {
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .amenity-item i {
        color: var(--primary-color);
        margin-right: 1rem;
        font-size: 1.2rem;
        width: 25px;
    }

    .amenity-category {
        font-weight: 600;
        color: var(--primary-color);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .info-card {
        background: #f7f7f7;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .info-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .info-card .icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .highlight-box {
        background: white;
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .highlight-box h4 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .highlight-box ul {
        list-style: none;
        padding: 0;
    }

    .highlight-box li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.5rem;
    }

    .highlight-box li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .btn-primary {
        background-color: var(--primary-color);
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background-color: #d90b45;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
    }

    .review-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 1rem;
    }

    .map-placeholder {
        background: #e0e0e0;
        border-radius: 12px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    footer {
        background: var(--text-dark);
        color: white;
        padding: 2rem 0;
        margin-top: 4rem;
    }

    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 1.8rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid img:first-child {
            grid-column: 1;
        }

        .property-title {
            font-size: 1.5rem;
        }
    }

    .sticky-booking {
        position: sticky;
        top: 20px;
    }

    .booking-card {
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        overflow: hidden;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    #booking-iframe {
        width: 100% !important;
        height: 750px !important;
        border: none !important;
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important;
        max-width: 450px !important;
        justify-content: center !important;
        
    }

    #availability {
        padding: 0;
        margin: 3rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #availability .section-title {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 450px;
        text-align: center;
    }

    .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .price-label {
        font-size: 1rem;
        color: var(--text-light);
    }

    .amenities-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        overflow-y: auto;
    }

    .amenities-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .amenities-modal-content {
        background: #f5f5f0;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 12px;
        position: relative;
        padding: 3rem 2rem;
    }

    .amenities-modal-header {
        text-align: center;
        margin-bottom: 2rem;
        color: #8b7355;
    }

    .amenities-modal-header h2 {
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .modal-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: #333;
        line-height: 1;
        padding: 0;
        width: 40px;
        height: 40px;
    }

    .modal-close-btn:hover {
        color: #000;
    }

    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .amenities-column h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #222;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #ddd;
    }

    .amenities-column ul {
        list-style: none;
        padding: 0;
    }

    .amenities-column li {
        padding: 0.75rem 0;
        color: #484848;
        font-size: 0.95rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .amenities-column li i {
        color: #222;
        font-size: 1.2rem;
        min-width: 24px;
        margin-top: 2px;
    }

    .amenity-text {
        flex: 1;
    }

    .amenity-text strong {
        display: block;
        color: #222;
        margin-bottom: 0.25rem;
    }

    .sub-note {
        font-size: 0.85rem;
        color: #717171;
        margin-top: 0.25rem;
        line-height: 1.4;
    }

    .unavailable {
        opacity: 0.5;
        text-decoration: line-through;
    }

    .see-all-amenities-btn {
        display: block;
        margin: 2rem auto 0;
        background: #ff385c;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1rem;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .see-all-amenities-btn:hover {
        background: #d90b45;
        transform: translateY(-2px);
    }

    @media (max-width: 992px) {
        .amenities-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .amenities-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .amenities-modal-content {
            padding: 2rem 1.5rem;
        }
    }

  /* testimonials */
 