/*
 Theme Name:   Your Child Theme
 Theme URI:    http://example.com/your-child-theme/
 Description:  Your Child Theme
 Author:       You
 Author URI:   http://example.com
 Template:     your-parent-theme
 Version:      1.0.0
 Text Domain:  your-child-theme
*/

/* Add your custom styles here */

/* Enhanced Gallery Styles */
.pg-gallery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #f8fafc;
}

.pg-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-gallery-image {
    border: 3px solid #0b4adb;
}

.gallery-image-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0b4adb;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.no-images-placeholder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
}

/* Loading states */
.pg-gallery-image img[loading="lazy"] {
    background: #f1f5f9;
}

.pg-gallery-image img:not([src]) {
    background: linear-gradient(45deg, #f1f5f9 25%, #e2e8f0 25%, #e2e8f0 50%, #f1f5f9 50%, #f1f5f9 75%, #e2e8f0 75%);
    background-size: 20px 20px;
}
/* Amenity Images */
.amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid #e2e8f0;
    line-height: 1;
}

.amenity-image {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
}

.amenity-icon {
    font-size: 14px;
    display: inline-block;
    width: 16px;
    text-align: center;
}

.amenity-name {
    font-size: 11px;
    color: #374151;
}
