/* =========================================
   STYLE INSPIRÉ DU THÈME "NOBLE"
   ========================================= */

/* --- Bannière Principale (Hero) --- */
.noble-hero-section {
    position: relative;
    /* Remplacement par votre image avec un filtre sombre par dessus pour lire le texte */
    background: linear-gradient(rgba(15, 32, 60, 0.8), rgba(15, 32, 60, 0.8)), url('https://fmjpublishing.com/public/site/images/admin/fmj-03-02-24-227516e2db9c0496e4373cdea86ac955.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.noble-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.noble-tag {
    background-color: #e53e3e; /* Rouge accent OJS */
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.noble-hero-section h1 {
    color: #ffffff !important;
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.noble-hero-section p {
    color: #e2e8f0;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- Barre de recherche intégrée --- */
.noble-search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px auto;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.noble-search-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1.1em;
    outline: none;
    background: transparent;
}

.noble-search-form button {
    background: #0056b3; /* Bleu primaire */
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.noble-search-form button:hover {
    background: #004085;
}

/* --- Boutons d'action --- */
.noble-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-noble-primary, .btn-noble-secondary {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none !important;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.btn-noble-primary {
    background-color: #ffffff;
    color: #0056b3 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-noble-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.btn-noble-secondary {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.btn-noble-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* --- Section Cartes (Grille) --- */
.noble-features-section {
    margin-bottom: 60px;
}

.noble-section-title {
    text-align: center;
    color: #1a202c;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 40px;
}

.noble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.noble-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noble-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.noble-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.noble-card h3 {
    color: #2d3748;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.noble-card p {
    color: #718096;
    line-height: 1.6;
}

/* --- Responsivité Mobile --- */
@media (max-width: 768px) {
    .noble-hero-section {
        padding: 60px 15px;
    }
    .noble-hero-section h1 {
        font-size: 2em;
    }
    .noble-search-form {
        flex-direction: column;
        border-radius: 12px;
    }
    .noble-search-form button {
        padding: 15px;
    }
}