/*
Theme Name: Psychonaut Custom Theme
Author: Milena Petkanova <milena@gargamena.com>
Version: 1.0.0
*/

:root {
  --light-color: #F5F5F5;
  --cream-color: #ECE8DC;
  --green-color: #A1B994;
  --dark-green-color: #325422;
  --dark-color: #0D2304;
  --container-padding: 20px;
}

::selection {
  background-color: var(--green-color);
  color: var(--dark-color);
}
::-moz-selection {
  background-color: var(--green-color);
  color: var(--dark-color);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream-color);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-color);
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: var(--cream-color);
  color: var(--dark-color);
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
}

main {
  min-height: 100vh;
  padding-bottom: 80px;
}

section {
  position: relative;
  z-index: 10;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a,
button {
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--light-color);
  background: transparent;
  padding: 10px 20px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* nav */

@media (max-width: 1025px) {
  .nav__btn {
    width: 100%;
  }
}

/* header */

.header {
  z-index: 21;
  position: relative;
  position: fixed;
  background-color: var(--cream-color);
}

@media (max-width: 1025px) {
  .header {
    position: fixed;
  }

  .header__container.u-container {
    max-width: 100%;
  }

  .header ul.lang {
    margin-left: 0;
    position: absolute;
    bottom: 0;
  }
}

/* footer */

.footer {
  position: relative;
  z-index: 1;
}

.footer__legal {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  font-size: 10px;
  line-height: 150%;
  display: flex;
  gap: 4px;
  padding: 2px 0;
}

@media (max-width: 1025px) {
  .footer__container {
    z-index: 1;
    justify-content: center;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer__nav {
    gap: 12px;
  }

  .footer__legal {
    position: static;
    transform: none;
    font-size: 14px;
    justify-content: center;
  }
}

/* menu-mobile */

.menu-mobile {
  z-index: 20;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  transition: top 0.4s ease-in-out;
  padding: 120px 24px 60px 24px;
  background: var(--dark-color);
  box-shadow: 0px 5px 10px rgba(117, 0, 36, 0.05);
}

@media (max-width: 1025px) {
  .menu-mobile__container.u-container {
    justify-content: center;
  }
}

/* intro-section */

.intro-section__container {
  max-width: 1180px;
}

.intro-section__heading {
  font-weight: 600;
}

@media (max-width: 1025px) {
  .intro-section__heading {
    font-size: 30px;
    line-height: 140%;
  }

  .intro-section__heading br {
    display: none;
  }

  .intro-section__container {
    padding-top: 100px;
  }

  .intro-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .intro-section__btn {
    width: 100%;
    justify-content: center;
  }
}

/* services-section */
/* 
.services-section__subheading {
  font-size: 18px;
  line-height: 160%;
  opacity: 0.65;
  max-width: 480px;
  margin: 0 auto;
} */

.services-section__cards {
  width: 100%;
  align-items: stretch;
}

.service-card {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--light-color);
  border-radius: 8px;
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: border-color 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.service-card:hover {
  border-color: var(--green-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(13, 35, 4, 0.08);
}

.service-card__icon-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--green-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--dark-color);
}

.service-card__title {
  margin-bottom: 16px;
}

.service-card__desc {
  flex: 1;
  margin-bottom: 32px;
  line-height: 170%;
  opacity: 0.75;
}

.service-card__cta {
  margin-top: auto;
}

@media (max-width: 1025px) {
  .services-section__cards {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 28px 24px;
  }

  .service-card__icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .service-card__desc {
    margin-bottom: 24px;
  }

  .service-card__cta {
    width: 100%;
    justify-content: center;
  }
}

/* contact form 7 plugin */

.wpcf7 form {
  max-width: 440px;
}

.wpcf7 form label {
  font-weight: 500;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0em 1em;
}

.wpcf7 .wpcf7-spinner {
  background-color: var(--cream-color);
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-top: 8px;
}

.wpcf7 .wpcf7-spinner::before {
  background-color: var(--green-color);
}

/* glowCookies library */

.glowCookies__banner__2 .btn__section button {
  text-transform: lowercase;
  text-align: center;
}

/* about */

.about-section__image-wrap {
  width: fit-content;
  height: fit-content;
}

.about-section__image-wrap img {
  object-fit: cover;
  height: 360px;
  width: 360px;
  border-radius: 50%;
}

.about-section p {
  margin-bottom: 30px;
}

@media (max-width: 1025px) {
  .about-section__content {
    flex-direction: column;
    align-items: center;
  }

  .about-section__image-wrap img {
    width: 240px;
    height: 240px;
  }

  .about-section__text {
    text-align: center;
  }
}

/* mobile typography */

@media (max-width: 1025px) {
  .u-heading-1 {
    font-size: 32px;
  }

  .u-heading-2 {
    font-size: 28px;
  }

  .u-heading-3 {
    font-size: 20px;
  }

  .u-subheading {
    font-size: 16px;
  }

  .u-section {
    padding: 40px 0;
  }

  .u-section__heading {
    margin-bottom: 32px;
  }

  .u-min-height-100 {
    min-height: auto;
    padding: 80px 0 60px;
  }
}