/*
Theme Name: Homey Child
Theme URI: http://themeforest.net/user/favethemes/
Author: Favethemes
Author URI: http://themeforest.net/user/favethemes/
Description: Homey is a powerful booking platform that lets you run a residential or commercial
rental business online with no hassle
Version: 1.0.0
Tags: right-sidebar, left-sidebar, custom-colors, custom-menu, featured-images, post-formats, theme-options, translation-ready
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: homey
Template: homey
*/


/* Modern Accommodation Styles */
/* .accommodation-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
} */

.accommodation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
	margin-top: 40px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #f15e75;
    margin-bottom: 0.5rem;
    background: #f15e75;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 600;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Room Card */
.room-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-height: 600px;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
}

/* Image Container */
.room-image-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
}

.room-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Room Content */
.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Room Features */
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 0.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 1.4rem;
    color: #495057;
    min-width: fit-content;
    font-weight: 500;
}

.feature-item i {
    color: #f15e75;
    font-size: 1.4rem;
}

/* Amenities */
.room-amenities {
    margin-bottom: 2rem;
}

.amenities-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e8f5e8;
    color: #2d5a2d;
    padding: 0.5rem 0.8rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
}

.amenity-tag i {
    font-size: 1.4rem;
    color: #28a745;
}

.amenity-more {
    background: #f8f9fa;
    color: #6c757d;
    padding: 0.5rem 0.8rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
}

/* Extra Fees */
.extra-fees {
    margin-bottom: 2rem;
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
}

.fees-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.8rem;
}

.fees-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
}

.fee-label {
    color: #856404;
    font-weight: 500;
}

.fee-amount {
    color: #6c757d;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Room Booking */
.room-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* .price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
} */

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
}

.price-period {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.select-room-btn {
    background: #f15e75;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    min-width: 180px;
    justify-content: center;
}

.select-room-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.select-room-btn:active {
    transform: translateY(-1px);
}

.select-room-btn.selected {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.select-room-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accommodation-section {
        padding: 1rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .room-card {
        border-radius: 20px;
        min-height: auto;
    }
    
    .room-image-container {
        height: 280px;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-title {
        font-size: 1.5rem;
    }
    
    .room-booking {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .price-section {
        justify-content: center;
    }
    
    .select-room-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .room-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .accommodation-container {
        padding: 0 0.5rem;
    }
    
    .room-image-container {
        height: 200px;
    }
    
    .room-content {
        padding: 0.75rem;
    }
    
    .room-title {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .extra-fees {
        padding: 0.75rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}



/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .room-card,
    .carousel-slide,
    .room-image,
    .carousel-btn,
    .select-room-btn {
        transition: none;
    }
    
    .room-card:hover {
        transform: none;
    }
    
    .room-card:hover .room-image {
        transform: none;
    }
}

/* Print styles */
@media print {
    .accommodation-section {
        background: white;
    }
    
    .carousel-btn,
    .carousel-indicators,
    .select-room-btn {
        display: none;
    }
    
    .room-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}
span.sr-only-n::before {
    content: "";
    font-family: Fontawesome;
    top: 0px;
    position: relative;
    right: 0px;
    color: rgb(255, 255, 255);
    z-index: 2147483647;
}
span.sr-only-p::before {
    content: "";
    transform: translate(0px, -50%);
    font-family: Fontawesome;
    top: 0px;
    position: relative;
    left: 0px;
    color: rgb(255, 255, 255);
    z-index: 2147483647;
}
/* Hidden by default */
.amenity-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(-5px);
}

/* Smooth show/hide transition */
.amenity-tag {
    display: inline-flex;
    align-items: center;
    margin: 4px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.toggle-text {
    display: inline-block;
    font-size: 1rem;
}
/* Button styling */
.amenity-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
    background: #f15e75;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.amenity-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.amenity-toggle .toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.amenity-toggle.expanded {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.amenity-toggle.expanded:hover {
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}
.sidebar-booking-module-header .multi_room {
    font-size: 17px;
    line-height: inherit;
    font-weight: 700;
}
.sidebar-booking-module-body .multi_room_select {
    margin-bottom: 10px;
}