/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ece7fa;
    z-index: 1000;
    padding: 20px 0;
    display: none;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.header-logo {
    height: 28px;
    filter:invert(1);
    -webkit-filter:invert(1);
}

/* BUTTONS */
.button {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 25px;
    text-decoration: none;
    display: block;
    width: fit-content;
    transition: 0.5s;
    cursor: pointer;
    border: 1px solid #000;
    font-family: 'Athletics Light', sans-serif;
}

.button a {
    color: #fff;
}

button.white-button {
    background-color: #fff;
}

button.white-button a {
    color: #000;
}

button.white-button:hover {
    background-color:#fff;
    border-color: #000;
}

.button:hover {
    background-color: #8a69d4;
    border-color: #8a69d4;
    transform: translateY(-3px);
}

.button#loadMore {
  margin: 0 auto;
}

.intro-text .button {
  margin-top: 25px;
}

.see-more-button {
  background-color: #fff;
  color: #000;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 25px;
  text-decoration: none;
  display: block;
  width: fit-content;
  transition: 0.5s;
  cursor: pointer;
  border: 0px solid #fff;
  margin: 50px auto;
  font-family: 'Athletics Light', sans-serif;
}

.see-more-button:hover {
    text-decoration: underline;
}

.no-more-text {
    text-align: center;
    margin: 20px;
    font-size: 18px;
    font-style: italic;
    color: #8a69d4; /* Tilpas farven, hvis nødvendigt */
}

/* DIVIDER */
.divider {
    border-top: 1px solid #000;
}

/* INFO BOX */
.info-box .info-heading {
    font-size: 22px;
    margin-bottom: 20px;
}

.info-heading, .info-columns {
    width: 65%;
    margin: 0 auto;
}

.info-box .info-heading::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  background-color: #ece7fa;
  margin-right: 10px;
  margin-bottom: 1px;
}

.info-box .info-text.left-column {
    font-size: 70px;
    line-height: 1;
}

.info-box .info-text.right-column {
    font-size: 34px;
}

.info-image {
    margin: 50px 0;
    border-radius: 25px;
    width: 100%;
}

/* RESTEN AF DINE STYLES */
@font-face {
    font-family: 'Athletics Light';
    src: url('Athletics-Light.otf') format('opentype');
    font-weight: 300;
}

body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Athletics Light', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

body {
    background-color: #fff;
    color: #000;
    font-family: 'Athletics Light', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.4;
    font-size: 22px;
}

a {
    color: #000;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 0;
    box-sizing: border-box;
}

.hero-wrapper {
    background-color: #ece7fa;
    width: 100%;
}

.hero {
    width: 65%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 70px;
    line-height: 1;
    font-weight: 300;
    margin: 0;
}

.intro-wrapper {
    width: 100%;
}

.intro-text {
    font-size: 34px;
    line-height: 1.4;
    width: 65%;
    margin: 0 auto;
}

.intro-recommendations .container {
    padding: 150px 0 50px;
    font-size: 70px;
    border-top: 1px solid #eaeaea;
}

.recommendations {
    width: 100%;
}

.recommendation-box {
    background-color: #8a69d4;
    margin: 24px auto;
    border-radius: 25px;
    padding: 25px;
    width: 90%;
    max-width: 1400px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 300;
}

.recommendation-box.black {
    background-color: #000;
}

.recommendation-box.red {
    background-color: #951e1a;
}

.recommendation-box .quote {
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.recommendation-box .person-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recommendation-box .person-details a {
    color: #fff;
}

.recommendation-box img {
    border-radius: 50%;
    max-width: 80px;
    margin-right: 15px;
}

.recommendation-box .person-info {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

.recommendation-box .person-info:before {
    content: "— ";
}

.recommendation-box iframe {
    width: 100%;
    height: 80px;
    border: none;
    margin-top: 10px;
}

.load-more {
    margin: 150px auto;
}

.divider {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 0 auto;
    width: 90%;
    max-width: 1400px;
}

.info-box {
    text-align: left;
    width: 100%;
    display:none;
}

footer {
    background-color: #000;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo {
    width: 100%;
    margin-bottom: 60px;
    display: none;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
}

p {
    margin: 0px;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
}

h3 {
    font-size: 22px;
}

@media (max-width: 800px) {
    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 90%;
        padding: 0px 0px;
    }

    .hero-wrapper,
    .intro-wrapper,
    .info-box,
    footer {
        padding: 100px 0px;
    }

    .hero {
    width: 100%;
    }

    .intro-text,
    .info-text {
        width: 100%;
        font-size: 28px;
    }

    .recommendation-box .quote {
        font-size: 28px;
    }

    .recommendation-box .person-info {
        font-size: 16px;
    }
    .recommendation-box img {
    max-width: 70px;
    }

    .load-more {
        padding: 12px 25px;
        font-size: 16px;
    }

    .button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .button#loadMore {
        margin: 50px auto;
    }
    .info-heading, .info-columns {
        width: 100%;
    }
    .info-box .info-text.left-column {
        font-size: 48px;
    }
    .info-box .info-text.right-column {
        font-size: 28px;
    }
    .intro-recommendations .container {
        padding: 50px 0 25px;
        font-size: 48px;
}
}
