/* _______ Global _______ */

@font-face {
  font-family: 'EudoxusSansGX';
  src: url('fonts/EudoxusSansGX.woff2') format('woff2'),
      url('fonts/EudoxusSansGX.woff') format('woff');
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: 'EudoxusSansGX', sans-serif;
  color: #736753;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: 0.1px;
  background-color: #FAF6EE;
}

h1, h2, h3, h4, h5 {
    color: #005A69;
    font-weight: 720;
    text-wrap:balance;
    line-height: 125%;
}

p, .look-like-h1 {
  text-wrap: pretty;
}

section {
  padding: 4rem 0;
}

.intro {
  font-size: 24px;
}


/* _______ Grid _______ */

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -18px;
}

.article {
  margin: 18px;
}

.full {
  width: calc(100% - 36px);
}

.half {
  width: calc(50% - 36px);
}

.third {
  width: calc(33.33% - 36px);
}

.quarter {
  width: calc(25% - 36px);
}

.fifth {
  width: calc(20% - 36px);
}

.sixth {
  width: calc(16.66% - 36px);
}

/* _______ Helper _______ */

.wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.big-wrp {
  max-width: 1320px;
  margin: 0 auto;
}


/* _______ Typography _______ */

h1{
  font-size: 48px;
  line-height: 1;
  margin-top: 20px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

.look-like-h1 {
  font-size: 48px;
  line-height: 1;
  margin-top: 20px;
}

h4 {
  font-size: inherit;
}

a {
  color: inherit;
}


/* _______ Header _______ */

.page-head {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 1px rgba(208,208,211,.5);
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
}

.main-nav, .logo-link{
  margin: auto 0;
}

.page-head {
  align-items: center;
}

.logo-link a {
  display: block;
  line-height: 0;
}

header ul {
  margin: 0;
  padding: 0;
}

header li {
  display: inline-block;
  list-style-type: none;
  padding: 0 10px;
  color: #005A69;
  text-decoration: none;
}

header a{
  text-decoration: none;
}

header li a:hover {
  color: #0097B0;
}

.header-logo {
	display: inline-block;
	height: 60px;
  padding-right: 6px;
}

.logo-txt {
	width: 178px;
}

header li a:hover {
  color: #0097B0;
}


/* _______ Section: HERO _______ */

.hero-img {
	height: 75vh;
	background-image: url('../assets/hero-pic.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
  padding-top: 90;
  padding-bottom: 0;
}

.hero-image {
	width: 100%;
}


/* _______ Section: HERO _______ */

.col2of3 {
  width: calc(60% - 36px);
}

.col1of3 {
  width: calc(40% - 36px);
}

/* .txt-mobile {
  display: none;
} */

.button {
  background-color: #005A69;
  box-shadow: inset 0 0 0 1px #005A69;
  margin: 0 auto;
  display: inline-block;
  font-weight: 500;
  padding: 12px 50px;
  border-radius: 8px;
}

.button, .button a {
    color: #fff;
    text-decoration: none;
  }

.sec-btn {
    background-color: #0097B0;
    box-shadow: none;
    font-size: 14px;
    color: #fff;
  }

  .sec-btn:hover, .sec-btn:hover a{
    background-color: #00778c !important;
    color: #fff !important;
  }


.hero .row, .features .row, .stories .row{
  border-bottom: 1px solid #d0d0d3;
  padding-bottom: 150px;
}

.accordion p {
  margin-bottom: 2px;
  margin-top: 2px;
}

.accordion-header::before {
  content: '\2b'; /* Unicode für Font Awesome Plus-Icon */
  font-family: 'Font Awesome 6 Free'; /* Font Awesome 6 Schriftart */
  font-weight: 900; /* Gewicht des Icons */
  margin-right: 10px; /* Abstand zum Text */
  display: inline-block;
  transform: rotate(0deg); /* Optional: Drehung für Plus zu Minus */
  transition: transform 0.3s ease; /* Optional: sanfter Übergang */
}

.accordion.active .accordion-header::before {
  content: '\2b'; /* Unicode für Font Awesome Plus-Icon */
  transform: rotate(45deg); /* Optional: Zurücksetzen der Drehung */
}

.accordion-header {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  /* padding: 10px; */
  /* background-color: #f1f1f1; */
  cursor: pointer;
}

.accordion-content {
  display: none;
}

.accordion-header:hover {
  color: #005A69;
}

.accordion.active .accordion-header {
  color: #005A69;
}

.accordion.active .accordion-content {
  display: block;
}


/* _______ Section: Stories _______ */

.story img {
  width: 100%
}


/* _______ Section: signup _______ */

.signup {
  background-color: #0097B0;
}

.signup .col1of3 {
  box-sizing: border-box;
  padding-left: 50px;
  padding-top: 30px;
}

.signup h3 {
  color: #FAF6EE;
}

.signup p {
  font-size: 15px;
  color: #fff;
}

.signup p:first-child {
  margin-top: 0;
}

.signup .button {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.signup .button a {
  font-size: 19px;
  color:#0097B0;
}


/* _______ Section: Footer _______ */

footer {
  background-color: #005A69;
  color: #fff;
  font-size: 15px;
}

footer h4 {
  font-size: 18px;
  color: #fff;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer li {
  display: block;
  min-height: 30px;
  list-style-type: none;
}

footer p {
line-height: 2;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.language {
  padding-top: 0;
}

.language .article {
  border-top: 1px solid #fff;
  justify-content: flex-start;
  margin-left: 0;
}

.language ul {
  margin-top: 40px;
}

footer p.info {
  font-size: 13px;
  line-height: 18px !important;
  opacity: 0.5;
}

/* _______ Pop-Up #Safari-Fix _______ */

#donationPopup {
  -webkit-transform: translate3d(0, 0, 0);
  margin: 4vw auto;
  max-width: 800px;
}


/* _______ Responsive _______ */

@media (max-width: 1360px) {

  .big-wrp {
    max-width: 1180px;
  }
}

@media (max-width: 1200px) {

  .wrapper, .big-wrp{
    max-width: 1000px;
    padding: 0 3rem;
  }

  .m-quarter {
    width: calc(25% - 36px);
  }

  h1 {
    font-size: 40px;
  }

  .look-like-h1 {
    font-size: 40px;
  }

  .signup .col1of3 {
    padding-left: 0;
    padding-top: 30px;
  }
 }

@media (max-width: 960px) {

  .m-quarter, .m-half, .m-sixth {
    width: calc(50% - 36px);
  }

  .main-nav li{
    display: none;
  }

  .main-nav li:last-child {
    display: block;
  }

  h1 {
    font-size: 36px;
  }

  .look-like-h1 {
    font-size: 36px;
  }

  section {
    padding: 3rem 0;
  }

  .signup .button {
    margin-bottom: 20px;
    padding: 6px 30px;
  }
 }

@media (max-width: 760px) {

  .wrapper, .big-wrp{
    max-width: 1000px;
    padding: 0 1.2rem;
  }

  .m-half {
    width: calc(100% - 36px);
  }

  .col2of3 {
    width: calc(100% - 36px);
  }

  .col1of3 {
    width: calc(100% - 36px);
  }

  h3 {
    margin: 0.5em 0;
  }

  section {
    padding: 2rem 0;
  }

  .hero .row, .features .row, .stories .row{
    border-bottom: 1px solid #d0d0d3;
    padding-bottom: 100px;
  }

  .hero .button {
    margin-top: 20px;
  }

  .hero .row {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* .hero .col1of3 p {
    display: none;
  } */

  .txt-mobile {
    display: block;
  }

  .signup .col1of3 {
    padding: 0;
  }
}

@media (max-width: 660px) {

  .m-quarter {
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 32px;
  }

  .look-like-h1 {
    font-size: 32px;
  }

  .intro {
    font-size: 18px;
  }

  section {
    padding: 1rem 0;
  }

  /* .logo-txt {
    display: none;
  } */

 #donationPopup {
    max-width: revert-layer;
    margin: 0;
  }
}

@media (max-width: 520px) {

  .m-half, .m-third, .m-quarter, .m-fifth, .m-sixth {
    width: calc(100% - 36px);
  }
}
