/* ToolBox - Header Générique Réutilisable */
/* ========================================= */

/* Reset et styles de base pour le header */
.toolbox-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
}

.toolbox-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.toolbox-brand-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toolbox-brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.toolbox-logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.toolbox-logo-link:hover {
    opacity: 0.8;
}

.toolbox-title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toolbox-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin: 0;
    font-weight: 600;
    line-height: 1;
}

.toolbox-header h1 i {
    color: #3498db;
    margin-right: 15px;
}

.toolbox-brand-link {
    color: #7f8c8d;
    font-size: 0.9em;
    font-weight: 400;
    margin-top: 5px;
    font-style: italic;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toolbox-brand-link:hover {
    color: #3498db;
    text-decoration: underline;
}

.toolbox-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    margin: 0;
}

/* Responsive pour le header */
@media (max-width: 768px) {
    .toolbox-brand-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .toolbox-title-section {
        align-items: center;
    }
    
    .toolbox-header h1 {
        font-size: 2em;
        text-align: center;
    }
    
    .toolbox-brand-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .toolbox-header h1 {
        font-size: 1.8em;
    }
    
    .toolbox-header p {
        font-size: 1em;
        text-align: center;
        padding: 0 10px;
    }
}
