/* Général */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Bleu clair pour le fond */
    color: #333;
    line-height: 1.6;
}

/* Header principal */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6f61, #ffcc00); /* Dégradé orange et jaune */
    color: white;
    padding: 20px 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.header .material-symbols-outlined {
    font-size: 2rem;
    cursor: pointer;
}

.header h1 {
    margin: 0;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* Menu secondaire */
.sec-header {
    display: flex;
    justify-content: center;
    background-color: #ffcc00; /* Jaune vif */
    padding: 10px 0;
}

.sec-header a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sec-header a:hover {
    transform: scale(1.1);
}

/* Partie principale */
.main {
    padding: 40px 20px;
    text-align: center;
}

.main img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.main h1 {
    font-size: 2rem;
    color: #333;
    margin: 20px 0;
}

.passion {
    color: #ff6f61;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Section principale gauche et droite */
.sec-main {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px 30px;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sec-main .p-gauche img {
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.sec-main .p-gauche,
.sec-main .p-droite {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.p-droite {
    font-size: 1.1rem;
    color: #444;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6dd5ed, #2193b0); /* Dégradé bleu clair */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer li {
    list-style: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer li:hover {
    color: #ffcc00;
}

/* Médias responsives */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sec-main {
        flex-direction: column;
    }

    .sec-header {
        flex-wrap: wrap;
    }
}
