@charset "UTF-8";
/* CSS Document */

:root {
    --primary: #06b6d4;
    --primary-dark: #0891b2;
    --secondary: #0e7490;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Contact */
header {
    background: var(--white);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    margin-top: 10px;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section (L'image large) */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit tout l'espace sans se déformer */
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Container & Cards */
.container {
    max-width: 1000px;
    margin: -50px auto 60px; /* Chevauchement sur l'image pour le style */
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.main-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--secondary);
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 25px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.content-item i {
    color: var(--primary);
    margin-top: 5px;
}

/* Icons & Badges */
.service-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.icon-box {
    background: #ecfeff;
    color: var(--secondary);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #cffafe;
}

.icon-box i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.badge {
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #f1f5f9;
    text-align: center;
    padding: 40px 20px;
}

footer a { color: var(--primary); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .hero { height: 40vh; }
    .hero-overlay h1 { font-size: 1.8rem; }
    .container { margin-top: 20px; }
}