/*********************************************************/
/***                   DEFAULTS                        ***/
/*********************************************************/

@font-face {
  font-family: chant;
  src: url(../assets/fonts/chant.ttf);
}

@font-face {
  font-family: santana;
  src: url(../assets/fonts/santana/Santana.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* 62.5% of 16px browser font size is 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  color: #444;
  background-color: #fff;
}

h3 {
  font-size: 3.2rem;
  text-transform: uppercase;
}

.vh100 {
  height: 100vh;
}

.container {
  margin: 0 auto;
  max-width: 120rem;
  padding: 1.2rem;
}

/*********************************************************/
/***                   NAVIGATION                      ***/
/*********************************************************/

header {
  display: none;
  width: 100%;
  position: fixed;
}

/*********************************************************/
/***                      HERO                         ***/
/*********************************************************/

.hero {
  position: relative;
  margin-bottom: 9.6rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)),
    url(../assets/bg/background.webp);
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 3rem;
}

.hero-title {
  color: white;
  font-family: "chant";
  font-size: 8.4rem;
  text-shadow: 0 3px 3px #333;
  animation: fadeIn 2.2s;
}

@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

.meditation-action {
  display: none;
  position: absolute;
  bottom: 11%;
  right: 11%;
  font-size: 1.6rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  width: 20rem;
  height: 20rem;
  padding: 5px;
  border-radius: 50%;
}

/*********************************************************/
/***                      ABOUT                        ***/
/*********************************************************/

.about {
  margin-bottom: 4.8rem;
  padding: 0 3rem;
}

.about p {
  line-height: 1.6;
  letter-spacing: 1.1px;
  text-align: left;
}

.service-quote {
  position: relative;
  margin: 3rem 20rem;
  font-style: italic;
  font-weight: 700;
  font-size: 2.2rem;
}

.qmark {
  position: absolute;
  margin: -2.8rem 0 0 -2.8rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 5rem;
}

.name {
  width: 100%;
  display: inline-block;
  text-align: center;
}

/*********************************************************/
/***                     SERVICES                      ***/
/*********************************************************/

.grid {
  display: grid;
  gap: 2.8rem;
}

.grid-col {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  display: flex;
  height: 44rem;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 33px;
}

.service-row {
  display: flex;
  justify-content: center;
  grid-column: 1 / span 2;
}

.meditation {
  width: 50%;
  background-image: url(../assets/img-services/meditatie.webp);
  background-position: 100% 100%;
}

.reading {
  background-image: url(../assets/img-services/reading.webp);
  background-position: center;
}

.healing {
  background-image: url(../assets/img-services/healing.webp);
  background-position: center;
}

.breaking {
  background-image: url(../assets/img-services/verbreken.webp);
}

.food {
  background-image: url(../assets/img-services/voeding.webp);
}

.service-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: rgba(128, 0, 128, 0.3);
  transition: all 0.3s ease;
  border-radius: 33px;
}

.service-txt:hover,
.service-txt:active {
  background-color: rgba(128, 0, 128, 0.9);
}

.service-icon {
  padding: 5rem;
}

.service-heading {
  text-align: center;
  padding-top: 5rem;
  transform: translate(0, -11%);
}

.service-list {
  display: none;
  line-height: 4.8rem;
  margin-top: 10rem;
  font-weight: 600;
}

.service-list li {
  list-style: none;
}

.service-txt:hover .service-list,
.service-txt:active .service-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-txt:hover .service-heading,
.service-txt:active .service-heading {
  display: none;
}

.telegram-invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

ion-icon.med-tg-icon {
  font-size: 2.8rem;
  color: white;
}

/*********************************************************/
/***                   TESTIMONIALS                    ***/
/*********************************************************/

.slider {
  background-image: linear-gradient(
      rgba(128, 0, 128, 0.5),
      rgba(128, 0, 128, 0.2)
    ),
    url(../assets/bg/cloud-rainbow.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-bottom: 18.6rem;
  border-radius: 33px;
}

/*********************************************************/
/***                   MEDIATIES AUDIO                 ***/
/*********************************************************/

.meditatie-audio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 9.6rem;
  margin: 0 auto;
}

.audio-title {
  padding: 2.8rem;
}

/*********************************************************/
/***                      FOOTER                       ***/
/*********************************************************/

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1.2rem;
  background-color: rgb(128, 0, 128);
  color: white;
  font-size: 1.7rem;
  overflow: hidden;
  z-index: 11;
}

.contact-buttons {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-buttons a {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

ion-icon {
  font-size: 2.2rem;
}
