/* Couleurs principales */
:root {
    --primary: #e024b1;
    --secondary: #FDF8FB;
    --text-dark: #222;
    --text-light: #fff;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --shadow: 0 10px 25px rgba(224, 36, 177, 0.15);
}
::selection{
    background-color: var(--gray-100);
    color: var(--primary);
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    margin: 0;
    padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
} 

.container {
    max-width: 700px;
    margin: 110px auto 0 auto;
    padding: 32px 16px;
    border-radius: 16px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.profile-image {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.profile-image:hover {
    transform: scale(1.05);
}

.header-title {
    background: linear-gradient(150deg, #fff, #b1c216);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

header p {
    font-size: 1.1rem;
    color: var(--gray-300);
    font-weight: 300;
    margin: 0;
    text-align: center;
}

.tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.tag {
    padding: 0.25rem 1rem;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.social-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 16px;
    border: 2px solid var(--primary);
    color: #444;
    background: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}
.social-btn i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section {
    background: var(--secondary);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}
.about-section h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-section p {
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.services-section {
    margin-bottom: 2.5rem;
}
.services-section h2 {
    color: var(--gray-100);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}
.service-card {
    background: linear-gradient(145deg, #fff, #f8f8f8);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(224, 36, 177, 0.1);
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 36, 177, 0.1);
    border-color: rgba(224, 36, 177, 0.3);
}

.service-icon {
    background: linear-gradient(45deg, #e024b1, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: -00.5rem;
    color: var(--primary)
}
.service-card p {
    color: var(--gray-600);
    font-size: 0.98rem;
}

.testimonials-section {
    margin-bottom: 2.5rem;
}
.testimonials-section h2 {
    color: var(--gray-100);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
#testimonials-container {
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.5rem;
}
.testimonial-card p {
    color: #444;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-info {
    display: flex;
    align-items: center;
}
.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.75rem;
}
.testimonial-info h4 {
    font-weight: 500;
    color: var(--gray-700);
    margin: 0;
}
.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.testimonial-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: var(--text-dark);
    width: 12px;
}

footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    text-align: center;
}
footer p {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 550;
}
footer a {
    color: white;
    font-weight: 550;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: white;

}
