/* Styles spécifiques pour la page des détails de l'appartement */

.detail-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--gris-clair);
    border-radius: var(--border-radius);
}

.detail-section h3 {
    color: var(--bleu-profond);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.image-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.equipment-list {
    list-style: none;
    padding-left: 0;
}

.equipment-list li {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
}

.equipment-list li i {
    color: var(--bleu-clair);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

#appartement.hero {
    /*height: 10vh;*/
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/details-banner.webp');
    background-size: cover;
    background-position: center;
    align-items: center;
    margin-bottom: -10px; /* Compenser le top */
}

#appartement.hero .hero-content h2 {
    font-size: 2.8rem;
}

#appartement.hero .hero-content p {
    font-size: 1.3rem;
}

#details-appartement {
    padding-top: 120px;
}

.details-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.details-buttons {
    text-align: center;
    margin: var(--spacing-lg);
}

.details-buttons .btn-secondary {
    margin-left: 15px;
}

@media (max-width: 768px) {
    #appartement.hero {
        height: 45vh;
        min-height: 300px;
    }
    #appartement.hero .hero-content h2 {
        font-size: 2.2rem;
    }
    #appartement.hero .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #appartement.hero {
        height: 40vh;
        min-height: 250px;
    }
    #appartement.hero .hero-content h2 {
        font-size: 1.8rem;
    }
    #appartement.hero .hero-content p {
        font-size: 1rem;
    }
} 
