:root {
    --roboto: "Roboto", sans-serif;
    --specialgothic: "Special Gothic Expanded One", sans-serif;
    --blanc: white;
    --noir: black;
    --gris: #D9D9D9;
    --gris-foncer: #B3B3B3B3;
    --bleu: blue;
}

.intro {
    text-align: center;
    padding-bottom: 50px;
}

.image-presentation img {
    width: 400px;
    border-radius: 10px;
}

.presentation {
    display: flex;
    justify-content: center;

    margin: 30px 0 50px 0;
}

.presentation-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.contenu-presentation h2{
    font-size: 50px;
    font-family: "Special Gothic Expanded One", sans-serif;
    margin: 0;
}

.contenu-presentation h4{
    margin: 0 0 20px 0;
    font-weight: 700;
}

.contenu-presentation p{
    max-width: 500px;
    margin: 0;
    font-size: 18px;
    line-height: 30px;  
}

/* SECTION (plans spécifiques pour la course) */

.titres-plans h2{
    text-align: center;
    font-family: var(--specialgothic);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cartes-specifique-course {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cartes-course {
    background-color: var(--gris);
    font-family: var(--roboto);
    text-align: center;
    margin: 0.6rem;
    height: 380px;
    width: 270px;
    border: 2px solid var(--noir);
    border-radius: 10px;
}

.cartes-course h3 {
    font-family: var(--specialgothic);
    font-size: 1.8rem;
    margin: 1.8rem 0 0.9rem 0;
}

.cartes-course p {
    margin: 0;
}

.voirplus {
    text-decoration: underline;
    color: var(--bleu);
}


.voirplus:hover {
    cursor: pointer;
}

.cartes-course h4 {
    font-family: var(--specialgothic);
    font-size: 1.8rem;
    margin: 1.25rem 0 0 0;
}

.txes{
    font-size: 0.75rem;
    text-decoration: underline;
    font-style: italic;
}

.cartes-course a {
    padding: 0.6rem 3rem;
    background-color: var(--noir);
    color: var(--blanc);
    display: inline-block;
    margin-top: 1.25rem;
    border-radius: 0.6rem;
    text-decoration: none;
    border: 3px solid var(--noir);
}

.cartes-course a:hover {
    background-color: var(--blanc);
    color: var(--noir);
    font-weight: 700;
    border: 3px solid var(--noir);
}

.titre-carte-materiel {
    text-decoration: underline;
}

.element2 {
    padding-bottom: 105px;
}

.element1 {
    padding-bottom: 23px;
}


.social-section {
  text-align: center;
  margin: 50px 0;
}

.social-section h2 {
    text-align: center;
    font-family: var(--specialgothic);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.social-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*@@@@@@@@@ MEDIAS QUERY @@@@@@@@@*/
@media screen and (min-width: 960px) {


    .cartes-course, .cartes-nage {
        margin: 1.8rem;
    }

    .cartes-specifique-course {
        flex-wrap: nowrap;
    }

    .presentation-section {
        flex-direction: row;
        text-align: left;
    }



}