/* Variables pour les couleurs */
:root {
    --primary-color: #0077b6; /* Bleu principal */
    --secondary-color: #ff6f61; /* Rouge-orange énergique */
    --light-color: #f0f0f0; /* Couleur de fond clair */
    --dark-color: #222; /* Couleur sombre */
    --text-color: #333; /* Couleur principale du texte */
}

/* Global Styles */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
    border-radius: 5px;
}

header nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 119, 182, 0.8), rgba(0, 119, 182, 0.9)), url('../images/hero-background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: var(--secondary-color);
    color: white;
    font-size: 1em;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.hero .btn:hover {
    background-color: #ff3b2f;
    transform: translateY(-3px);
}

/* Featured Image */
.featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Quick Links Section */
.quick-links {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}

.quick-links h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.quick-links .links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-links .links a {
    background-color: var(--primary-color);
    color: white;
    font-size: 1em;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.quick-links .links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Media Queries */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .quick-links .links {
        flex-direction: column;
        gap: 10px;
    }
}
