/**
 * Styles de la page d'accueil - Design professionnel et sobre
 */

@import url("variables.353f80c67c08.css");
@import url("components.f4c17d4e9c01.css");

/* ======================================
   HERO SECTION
====================================== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero-section h2::after {
    display: none;
}

.hero-section .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Profile Image */
.profile-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal);
}

.profile-image-wrapper:hover {
    transform: translateY(-5px);
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ======================================
   EXPERTISE CARDS
====================================== */
.expertise-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid #e5e7eb;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.expertise-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-emphasis);
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.expertise-card ul li:last-child {
    border-bottom: none;
}

.expertise-card ul li i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* ======================================
   TECH CARDS STYLES
====================================== */
.tech-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    height: 100%;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.tech-card .card-body {
    padding: 1.5rem;
    height: 100%;
}

.tech-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.tech-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-emphasis);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.tech-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.5;
}

/* Responsive pour les cartes tech */
@media (max-width: 768px) {
    .tech-card .card-body {
        padding: 1.25rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-title {
        font-size: 1rem;
    }
}
