/*
Theme Name:   Hello Elementor Child
Theme URI:    https://chateaupapounan.com
Description:  Child theme for Château Papounan customizations
Author:       Jacques
Author URI:   https://chateaupapounan.com
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  hello-elementor-child
*/

/* ==========================================================================
   Custom Styles for Château Papounan
   ========================================================================== */

 /* Room Card Widget Styles */
.chateau-room-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.chateau-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.chateau-room-card__image {
    position: relative;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.chateau-room-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chateau-room-card__content {
    padding: 24px;
}

.chateau-room-card__title {
    font-size: 24px;
    margin: 0 0 12px;
    color: #333;
}

.chateau-room-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.chateau-room-card__size {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.chateau-room-card__amenities {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chateau-room-card__amenities li {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.chateau-room-card__price {
    font-size: 18px;
    margin: 16px 0;
    color: #333;
}

.chateau-room-card__price strong {
    color: #8B4513; /* Bordeaux wine color */
    font-size: 24px;
}

.chateau-room-card__button {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.chateau-room-card__button:hover {
    background: #6d3410;
}