@import url("https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css");
.intro {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 5rem;
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media (width <= 425px) {
  .intro__desc {
    width: 100%;
  }
}
.intro__image {
  width: 15rem;
  border-radius: 100px;
  position: absolute;
  right: 1rem;
}

.intro__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 5rem;
}
@media (width <= 425px) {
  .intro__social {
    width: 100%;
  }
}
.intro__social_link {
  width: 3rem;
}

.music__embeds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10rem;
}
@media (width <= 425px) {
  .music__embeds {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .music__embeds_element {
    width: 8rem;
    height: 8rem;
  }
}
.music__embeds_element {
  width: 18rem;
  height: 18rem;
  border-radius: 20px;
}

.music {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 4rem;
}
@media (width <= 425px) {
  .music__desc {
    width: 100%;
  }
}
.music__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
  flex-direction: column;
}
.calendar__title {
  text-align: center;
  margin-bottom: 3rem;
}

.intro {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
  margin-top: 10rem;
  padding-bottom: 1rem;
}

.matos {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
}
.matos a {
  text-decoration: underline;
}
.matos p {
  text-align: justify;
}
.matos h2 {
  padding-top: 10rem;
}

@font-face {
  font-family: "Josefin";
  src: url(assets/fonts/JosefinSans-Regular.ttf);
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #f4e7e1;
  font-family: "Josefin";
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

main {
  min-height: 100vh;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
}
@media (width <= 425px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}
@media (width <= 425px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (width <= 425px) {
  h3 {
    font-size: 1.2rem;
  }
}

p {
  font-size: 1.3rem;
}

a {
  text-decoration: none;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  margin-inline: 20rem;
}
@media (width <= 1440px) {
  .container {
    margin-inline: 5rem;
  }
}
@media (width <= 768px) {
  .container {
    margin-inline: 2rem;
  }
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  gap: 10rem;
  background: black;
  color: #f4e7e1;
}
@media (width <= 425px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
    padding-left: 1rem;
  }
}
.nav__lien {
  text-decoration: none;
  color: #f4e7e1;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.5s ease;
}
.nav__lien:hover {
  text-decoration: underline;
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}
@media (width <= 425px) {
  .nav__burger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    padding: 1rem;
  }
}
.nav__burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #f4e7e1;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.nav__menu_title {
  display: none;
}
@media (width <= 425px) {
  .nav__menu_title {
    display: block;
    color: #f4e7e1;
    font-size: 1.2rem;
    margin: 0;
    padding: 1rem;
  }
}
.nav__menu_link {
  display: flex;
  gap: 10rem;
}
@media (width <= 1024px) {
  .nav__menu_link {
    gap: 5rem;
  }
}
@media (width <= 425px) {
  .nav__menu_link {
    flex-direction: column;
    gap: 0;
  }
}

.footer {
  background-image: url(assets/images/ruff-rakam-background-2.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3rem;
  height: 10rem;
  margin-top: 5rem;
  flex-direction: column;
  gap: 2rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
.footer__links_element {
  color: #000000;
  font-size: 1.5rem;
}

.spacer {
  margin-bottom: 2rem;
}

.margin-top {
  margin-top: 10rem;
}
@media (width <= 768px) {
  .margin-top {
    margin-top: 5rem;
  }
}

.margin-top5 {
  margin-top: 5rem;
}
@media (width <= 768px) {
  .margin-top5 {
    margin-top: 3rem;
  }
}

.button {
  color: black;
  border: 2px solid black;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 5rem;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: black;
  color: #f4e7e1;
  transition: all 0.3s ease;
}

.plans__ressources {
  margin-top: 5rem;
  font-size: 1.5rem;
}
.plans__ressources li {
  margin-top: 1rem;
}

.plans {
  margin-top: 10rem;
}
.plans__title {
  text-align: center;
}

.blog__card {
  border: 2px solid #000;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.blog__card:hover {
  box-shadow: 10px 10px 0 rgb(0, 0, 0);
  transition: all 0.3s ease;
  transform: translate(-10px, -10px);
}

.single-blog__back {
  border: 2px solid #000;
  padding: 0.7rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  color: #000;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
}
.single-blog__back:hover {
  background-color: #000;
  color: #f4e7e1;
}
.single-blog__back:hover path {
  fill: #f4e7e1;
  transition: all 0.3s ease;
}

path {
  transition: all 0.3s ease;
}

/*# sourceMappingURL=style.css.map */
