/* ==========================================================================
   1. VARIABLES & CONFIGURATION GENERALE
   ========================================================================== */
:root {
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --card-bg: #ffffff;
    --text-main: #2d3748;
    --text-muted: #718096;
    --primary-blue: #0056b3; /* Teinte de bleu pour vos numéros et liens */
    --accent-gray: #e2e8f0;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container principal de centrage */
.business-card-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   2. STRUCTURE DE LA CARTE DE VISITE
   ========================================================================== */
.business-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px 30px;
    overflow: hidden;
    transition: var(--transition);
}

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

/* ==========================================================================
   3. SECTION EN-TÊTE (LOGO & PROFIL)
   ========================================================================== */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-info .profile-name {
    font-size: 1.6rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-info .profile-title {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.profile-info .profile-activity {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.profile-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   4. SECTION COORDONNEES DE CONTACT
   ========================================================================== */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Espace régulier entre chaque ligne */
}

.contact-row {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid var(--accent-gray);
    transition: var(--transition);
}

/* Effet interactif au survol des lignes de contact */
.contact-row:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* Style des icônes Font Awesome */
.contact-row i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    width: 25px; /* Largeur fixe pour aligner parfaitement les textes */
    margin-right: 15px;
    text-align: center;
}

/* Liens cliquables (Téléphone, Mail, GPS, Fax) */
.contact-link {
    color: inherit;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-blue);
}

/* Couleur bleue personnalisée pour vos numéros */
.blue-number {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN (Ecrans très petits)
   ========================================================================== */
@media (max-width: 400px) {
    .business-card {
        padding: 25px 20px;
    }
    .profile-info .profile-name {
        font-size: 1.4rem;
    }
}
