@import "reset.css";
@import "nav.css";
@import "footer.css";
@import "style.css";
.picture {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px 5px;
  margin: 20px 0;
}

.title__h2 {
  font-size: 2rem;
  letter-spacing: 0.5rem;
}

.paragraph {
  font-size: 1.5rem;
  padding: 30px;
  justify-self: start;
}

.container__profile {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.card__profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
}

.picture {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1rem auto;
}

.title__h2 {
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

.paragraph {
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

.picture:hover {
  transform: scale(1.4);
  transition: 1.5s;
}

/* Styles pour le footer */
.footer {
    width: 100%;
    margin-top: 2rem;
}

.footer__menu {
    width: 100%;
    margin: 0;
    padding: 1rem;
}

.reseau {
    width: 100%;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer__menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
        margin: 0;
    }

    .footer {
        width: 100%;
        overflow: hidden;
    }

    .reseau {
        justify-content: center;
        padding: 1rem 0;
    }

    .reseau a {
        margin: 0 0.5rem !important;
    }
}

@media screen and (max-width: 576px) {
    .footer__menu {
        font-size: 1rem !important;
    }

    .footer__menu a {
        padding: 0.5rem;
    }
}

/* Styles responsives pour la page communauté */
@media screen and (max-width: 992px) {
    .container__communaute {
        width: 100%;
        padding: 1rem;
    }

    .text__communaute {
        width: 90% !important;
        font-size: 1.2rem !important;
        margin-bottom: 2rem;
    }

    .container__profile {
        width: 95%;
        padding: 1rem;
        gap: 1.5rem;
    }

    .card__profile {
        flex-direction: column !important;
        text-align: center;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .title__h2 {
        text-align: center;
        letter-spacing: 0.5rem;
        margin-bottom: 1rem;
    }

    .paragraph {
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
    }

    .picture {
        width: 80%;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .picture:hover {
        transform: scale(1.1);
    }

    .footer {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .communaute1__visuelcop {
        font-size: 1.5rem !important;
        text-align: center;
        padding: 0 1rem;
    }

    .title__h2 {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }

    .btn {
        margin: 1rem 0 !important;
        font-size: 0.9rem;
    }

    .container__profile {
        width: 100%;
        padding: 0.5rem;
        gap: 1rem;
    }

    .btn {
        margin: 0.5rem 0 !important;
    }
}

@media screen and (max-width: 576px) {
    .text__communaute {
        width: 95% !important;
        font-size: 1rem !important;
    }

    .title__h2 {
        font-size: 1.2rem;
    }

    .paragraph {
        font-size: 1rem;
    }

    .picture {
        width: 100%;
    }

    .btn {
        width: 100%;
        margin: 0.5rem 0 !important;
        font-size: 0.8rem;
    }
}

.slogan__communaute2 {
  margin: 1rem 0;
}

.card__profile {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card__profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.text__communaute {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
}

.picture {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 15px auto;
}

@media screen and (min-width: 1200px) {
  .container__profile {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .container__profile {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .container__profile {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1rem;
  }
}
/*# sourceMappingURL=communaute.css.map */