/* ====================================================================
   FICHIER : /assets/css/temp.css
   RÔLE : Styles temporaires pour la page d'accueil minimaliste
   ==================================================================== */

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* ========================================
   NAVBAR TEMPORAIRE MINIMALISTE
   ======================================== */

.navbar-temp {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-temp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.navbar-temp-logo {
    display: flex;
    align-items: center;
}

.navbar-temp-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-temp-logo img:hover {
    transform: scale(1.05);
}

.navbar-temp-right {
    display: flex;
    align-items: center;
}

.btn-progiciel {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6B46C1;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.3);
}

.btn-progiciel:hover {
    background-color: #553399;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.5);
    transform: translateY(-2px);
}

/* ========================================
   CONTENU TEMPORAIRE
   ======================================== */

.temp-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.temp-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.temp-content h1 {
    font-size: 2.5rem;
    color: #6B46C1;
    margin-bottom: 20px;
    font-weight: 700;
}

.temp-message {
    font-size: 1.25rem;
    color: #FF6B35;
    margin-bottom: 40px;
    font-weight: 500;
    font-style: italic;
}

.temp-info {
    background-color: #f8f9fa;
    border-left: 4px solid #6B46C1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.temp-info p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .navbar-temp-container {
        padding: 0 15px;
        min-height: 60px;
    }
    
    .navbar-temp-logo img {
        height: 40px;
    }
    
    .btn-progiciel {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .temp-container {
        margin: 40px auto;
    }
    
    .temp-content {
        padding: 40px 25px;
    }
    
    .temp-content h1 {
        font-size: 1.8rem;
    }
    
    .temp-message {
        font-size: 1.1rem;
    }
}
