/* ===== STYLES POUR LA PAGE D'ACCUEIL ===== */

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc url('/assets/images/baobab-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.85);
    z-index: -1;
}

.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
.home-header {
    background: #ffffff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flag-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    height: 60px;
    width: 120px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.flag-stripe {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-stripe.green {
    background: #00853f;
}

.flag-stripe.yellow {
    background: #fcd116;
    color: #000;
}

.flag-stripe.red {
    background: #ce1126;
}

.flag-star {
    font-size: 1.5rem;
    color: #00853f;
    text-shadow: 0 0 10px rgba(0, 133, 63, 0.5);
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.header-text p {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

/* ===== MAIN CONTENT ===== */
.home-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}

/* ===== SCEAUX ===== */
.seals-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.seal-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.seal-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seal-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.seal-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fcd116, #00853f, #ce1126, #fcd116);
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.seal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.seal-lion,
.seal-baobab,
.seal-shield {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fcd116;
    text-shadow: 0 0 20px rgba(252, 209, 22, 0.5);
    transition: all 0.3s ease;
}

.seal-lion:hover,
.seal-baobab:hover,
.seal-shield:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(252, 209, 22, 0.7);
}

.seal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seal-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}

.seal-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.seal-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

/* ===== TITRE PRINCIPAL ===== */
.main-title {
    margin-bottom: 3rem;
}

.main-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.main-title p {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BOUTON DE CONNEXION ===== */
.login-section {
    margin-bottom: 4rem;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #1e293b;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background: #334155;
}

.login-btn i {
    font-size: 1.3rem;
}

/* ===== INFORMATIONS ===== */
.info-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
}

.info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: #fcd116;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(252, 209, 22, 0.3);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-card p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.home-footer {
    background: #f1f5f9;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-text h1 {
        font-size: 2rem;
    }
    
    .header-text p {
        font-size: 1rem;
    }
    
    .seals-container {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .seal-circle {
        width: 120px;
        height: 120px;
    }
    
    .seal-lion,
    .seal-baobab,
    .seal-shield {
        font-size: 2rem;
    }
    
    .main-title h1 {
        font-size: 2.5rem;
    }
    
    .main-title p {
        font-size: 1.1rem;
    }
    
    .login-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .info-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .info-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .home-main {
        padding: 2rem 1rem;
    }
    
    .seals-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .login-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}




