/* Styles personnalisés pour le site */

/* Styles généraux */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* En-tête */
.header {
    padding: 1rem 0;
    background-color: #fafafa;
    border-bottom: 1px solid #e6e6e6;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.logo a {
    color: #1779ba;
    text-decoration: none;
}

/* Menu */
.top-bar, .top-bar ul {
    background-color: transparent;
}

.top-bar-right .dropdown.menu > li > a {
    padding: 0.7rem 1rem;
    color: #0a0a0a;
    font-weight: 500;
}

.top-bar-right .dropdown.menu > li > a:hover {
    color: #1779ba;
}

/* Bannière hero */
.hero-section {
    background: url('https://via.placeholder.com/1200x400') center center no-repeat;
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: rgba(54, 54, 54, 0.7);
    padding: 2rem;
    border-radius: 3px;
}

.hero-section-text h1 {
    color: #fefefe;
    font-weight: bold;
}

/* Cartes */
.card {
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-divider {
    background-color: #1779ba;
    color: white;
}

/* Contenu principal */
.main-content {
    padding: 2rem 0;
    min-height: 50vh;
}

/* Pied de page */
.footer {
    background-color: #2c3840;
    color: #fefefe;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer h4 {
    color: #fefefe;
    font-size: 1.2rem;
    border-bottom: 1px solid #4f5b62;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer a {
    color: #e6e6e6;
}

.footer a:hover {
    color: #1779ba;
}

/* Responsive */
@media screen and (max-width: 39.9375em) {
    .hero-section {
        height: 40vh;
    }
    
    .hero-section-text {
        padding: 1rem;
    }
    
    .hero-section-text h1 {
        font-size: 1.5rem;
    }
}
