/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Couleur de fond plus claire */
    color: #333; /* Couleur de texte principale */
}

header {
    background-color: #ff5733; /* Couleur de fond plus vive */
    color: #ffffff; /* Couleur de texte blanc */
    padding: 10px 0;
    text-align: center;
}

.header-title {
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px; /* Taille des boutons ajustée */
    border-radius: 20px;
    background-color: #ff814d; /* Couleur de bouton plus claire */
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ff9e7f; /* Couleur de surbrillance plus claire */
}

main {
    padding: 20px;
}

.rugby-ball-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
    float: left;
}

.photo-caption {
    font-size: 16px;
    line-height: 1.5;
}

.contact-info {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .rugby-ball-photo {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    nav ul li {
        display: block;
        margin-bottom: 5px;
    }

    nav ul li a {
        display: block;
        text-align: center;
        padding: 10px;
        margin-bottom: 5px; /* Espacement entre les boutons en mode mobile */
    }
}
