/* Styles spécifiques pour la page Le Pinson */

/* Section d'équipements */
.equipment-section {
    margin: 40px 0;
    padding: 20px;
    background-color: rgba(247, 245, 242, 0.7);
    border-radius: 8px;
}

.equipment-section h3, .section-title {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    font-size: 2rem;
}

.equipment-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #a89882, transparent);
}

/* Style pour les accordéons */
.accordion-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #fff;
}

.accordion-header {
    padding: 15px 20px;
    background-color: #f9f7f4;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(168, 152, 130, 0.3);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f1efe9;
}

.accordion-header h4 {
    font-family: 'Playfair Display', serif;
    color: #a89882;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h4 i {
    transition: transform 0.3s ease;
}

.accordion-header.active h4 i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 20px;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.accordion-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a89882;
}

.accordion-content ul li i {
    margin-right: 10px;
    color: #a89882;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-container {
        width: 100%;
    }
}

/* Styles pour améliorer la section du carrousel */
.apartment-carousel-container {
    margin-bottom: 40px;
}

.carousel-description {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background-color: rgba(247, 245, 242, 0.7);
    border-radius: 8px;
}

.carousel-description h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.carousel-description h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #a89882;
    opacity: 0.5;
}

.carousel-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Styles spécifiques pour Le Pinson */
.apartment-pricing .price-range {
    font-size: 1.8rem;
    font-weight: bold;
    color: #a89882;
    margin: 10px 0;
}

.apartment-description h2 {
    color: #333;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
}

.apartment-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #a89882;
}

/* Améliorer la lisibilité sur mobile */
@media (max-width: 768px) {
    .apartment-main-info {
        flex-direction: column;
    }
    
    .apartment-description {
        margin-bottom: 20px;
    }
    
    .apartment-pricing {
        width: 100%;
        margin-left: 0;
        padding: 15px;
    }
}
