
/* Styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: relative;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h1 span {
    color: #e6d6b3;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

nav {
    background: #34495e;
    padding: 0.5rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

nav a:hover, nav a.active {
    background: #e6d6b3;
    color: #2c3e50;
}

section {
    padding: 3rem 0;
}

.services-intro {
    background: white;
    text-align: center;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.availability {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid #e6d6b3;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

article {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-section {
    background: #f8f9fa;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.profile-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height:auto;

    margin-bottom: 10px;
}

.fas-fa-user {
    display: flex;
    justify-content: center;
    align-items: center;

    height: auto;
    width: auto;

    border : 1px solid black;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover; 

}
.fas-fa-user img{
    height: auto;    
    width: auto;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.highlight {
    background: #e6d6b3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    font-style: italic;
    text-align: center;
}

.qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.quality-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quality-item i {
    font-size: 2.5rem;
    color: #e6d6b3;
    margin-bottom: 1rem;
}

.contact-info {
    background: white;
    text-align: center;
}

.contact-info a {
    color: #2c3e50;
    text-decoration: none;
}

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

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

/* Styles pour les photos */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.photo-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 250px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6e6e6;
    color: #7f8c8d;
    font-size: 1.2rem;
}

.service-photo {
    height: 200px;
    background: #e6e6e6;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

/* Styles pour les liens sociaux */
.social-header {
    position: absolute;
    top: 20px;
    right: 20px;
}

.social-header a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-header a:hover {
    color: #E1306C;
}

.instagram-link {
    margin-top: 15px;
}

.instagram-link a {
    color: #E1306C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.instagram-link a:hover {
    opacity: 0.8;
}

.social-footer {
    margin-bottom: 1rem;
}

.social-footer a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-footer a:hover {
    color: #E1306C;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .service-details {
        flex-direction: column;
    }
    
    .qualities {
        flex-direction: column;
    }
    
    .social-header {
        position: static;
        text-align: center;
        margin-top: 10px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 5px 0;
    }
}
