/*
 * [AUDIT] Fichier extrait de single-carte_pro_dir_ltg.php (lignes 146-393)
 * Le CSS inline reste en place dans le PHP — ce fichier est créé pour migration future.
 * NE PAS enqueue ce fichier tant que le <style> inline n'a pas été supprimé.
 */

    /* Styles pour la page Single Aménageur */

.single-amenageur-container {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}

.single-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 3px solid #e65f0d;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 1.8rem;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #e65f0d;
    position: relative;
    padding-left: 1rem;
}

.card-body h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    height: 70%;
    width: 4px;
    background-color: #e65f0d;
    border-radius: 2px;
}

.contact-info p,
.description-content,
.services-list {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

.contact-info i {
    color: #e65f0d;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #e65f0d;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.contact-info a:hover {
    color: #c4520b;
    text-decoration: underline;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-list .badge {
    background-color: #f8f9fa;
    border: 1px solid #e65f0d;
    color: #e65f0d;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.services-list .badge:hover {
    background-color: #e65f0d;
    color: white;
    transform: translateY(-2px);
}

.amenageur-logo {
    text-align: center;
    padding: 1.5rem;
}

.amenageur-logo img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.amenageur-logo:hover img {
    transform: scale(1.05);
}

.amenageur-map #single-amenageur-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.btn-primary {
    background-color: #e65f0d;
    border: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(230, 95, 13, 0.2);
    color: white;
}

.btn-primary:hover {
    background-color: #c4520b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 95, 13, 0.3);
}

.btn-primary i {
    margin-right: 8px;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content a {
    color: #e65f0d;
    text-decoration: none;
    font-weight: 500;
}

.description-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .single-amenageur-container {
        padding: 2rem 1rem;
    }
    
    .single-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-body h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .single-title {
        font-size: 1.8rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .services-list .badge {
        font-size: 0.85rem;
    }
    
    .contact-info p, 
    .description-content, 
    .services-list {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .single-amenageur-container {
        padding: 1.5rem 1rem;
    }
    
    .single-title {
        font-size: 1.6rem;
    }
    
    .card-body {
        padding: 1.2rem;
    }
    
    .card-body h3 {
        font-size: 1.2rem;
    }
}
