body {
    color: var(--color-reiki-darker);
    margin: 4vh 2vw;
}

h1{
    font-family: 'GOGOIA', sans-serif;
    font-size: 4rem;
    font-weight: 100;
    text-align: center;
}

h2 {
    font-family: 'GOGOIA', sans-serif;
    font-size: 3rem;
    font-weight: 100;
    padding-bottom: 1em;
}

#bg {
    z-index: -100000;
    background-image: url(./assets/reiki-bg.svg);
    background-repeat: no-repeat;
    width: 99.2vw;
    height: 100vh;
    position: absolute;
    top: -14vh;
    left: 0;
}

#reiki-bg {
    z-index: -10000;
    position: relative;
    height: 100vh;
    width: 100vw;
    top: -12vh;
    left: 0;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-reiki-darker)
}

a:active, a:hover, a:focus {
    font-weight: 900;
}

section {
    margin: 5vh 5vw;
}

/**HEADER**/
.menu-container, .menu-container a {
    color: var(--color-reiki-darker);
}

.menu-container a:hover {
  color: var(--color-reiki);
}

/*Responsive*/
@media(max-width: 900px) {
  .menu {
    background: var(--color-reiki-darker);
  }

  .menu-container a {
    color: var(--color-neutral);
  }
  
  .menu-container a:hover {
    color: var(--color-neutral-darker);
  }
}

/**SECTION 1**/
#first-section {
    display: grid;
    height: 80vh;
    grid-template-columns: 3fr 4fr;
}

#reiki-illustration {
    max-width: 34vw;
    justify-self: center;
    align-self: end;
}

#first-section > div {
    height: 100%;
    align-content: space-between;
}

#rdv{
    justify-self: start;
    height: 70%;
}

#contact{
    margin: auto;
    margin-top: 5vh;
    max-width: fit-content;
    text-align: center;
    font-size: 1.5rem;
    background-color: var(--color-neutral);
    padding: 1em;
    border-radius: var(--border-radius);
}

#description{
    max-width: 35vw;
    height: 30%;
    padding: 0 3em;
    margin-right: 5%;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

#description > img {
    max-height: 170px;
}

/*Responsive*/
@media(max-width: 1150px) {
  #first-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  #reiki-illustration {
    display: none;
  }

  #rdv{
    justify-self: center;
    height: auto;
  }

  #contact {
    background-color: var(--color-neutral-darker);
  }
 
  #description{
    height: auto;
    max-width: 100vw;
    margin: 8vh 0;
    justify-self: end;
    display: flex;
    align-items: center;
  }
}

@media(max-width: 600px) {
  #description > img {
   display: none;
  }
}

/**SECTION 2**/
#second-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20vh 0;
    align-items: center;
}

#wellness{
    background-color: var(--color-neutral-darker);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1em;
    margin: 0 10%;
    padding-bottom: 10%;
}

#wellness > img {
    max-height: 180px; 
    position: relative;
    top: -35px;
}

#wellness > div {
    margin: 0 10%;
}

#what {
    margin: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#what > img {
    max-height: 500px;
}

#what > p {
    padding: 0 15%;
}

/*Responsive*/
@media(max-width: 1150px) {
#second-section {
    grid-template-columns: 1fr;
    margin: 10vh 0;
}

#what {
    margin: 0 10%;
    margin-top: 8vh;
}

#what > p {
    padding: 0 5%;
}
}

@media(max-width: 600px) {
#what > img {
    display: none;
}
}

/**SECTION 3**/
#third-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 35vh;
}

#tarif{
    padding: 1em;
    margin: 0 10%;
}

#tarif > p {
    padding : 0.5em 0;
}

#blob {
    background-image: url(./assets/reiki-blob.svg);
    min-height: 31vh;
    max-width: 362px;
    width: 60vw;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--color-neutral);
    font-size: 1.8rem;
    margin: 2vh auto;
}

/*responsive*/
@media(max-width: 1150px) {
#third-section {
    grid-template-columns: 1fr;
    margin: 10vh 0;
}
}

@media(max-width: 600px) {
#blob {
    background-image: none;
    background-color: var(--color-reiki);
    border-radius: var(--border-radius);
}
}