/* General Settings */

:root {
    --color-transparent: hsl(0, 100%, 58%, 0%);
    --primary-color: hsl(320, 63%, 26%);
    --secondary-color: hsl(215, 82%, 80%);
    --black-100: hsl(27, 18%, 10%);
    --black-75: hsl(320, 16%, 25%);
    --black-50: hsl(320, 16%, 50%);
    --black-25: hsl(320, 16%, 75%);
    --black-10: hsl(320, 16%, 85%);
    --black-5: hsl(320, 18%, 90%);
    --error-color: hsl(0, 100%, 31%);
    --h1-size: clamp(3rem, 5vw + 1rem, 5rem);
    --h2-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    --h3-size: clamp(1.25rem, 3vw, 1.8rem);
    --p-size: clamp(1rem, 1.5vw, 1.25rem);
    --tiny-size: clamp(.5rem, .75vw, .6rem);
    --bebas-font: "Bebas Neue", sans-serif;
    --roboto-font: "Roboto Flex", sans-serif;
}

@keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

@keyframes borderFlash {
    0%   { border-color: var(--primary-color); }
    50%  { border-color: var(--black-10); }
    100% { border-color: var(--primary-color); }
}

* {
    margin: 0;
    padding: 0;
}

p, h1, h2, h3, h4, h5, li, .read-more-btn {
    color: var(--black-5);
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    max-width: 60ch;
}

h1 {
    font-size: var(--h1-size);
    font-family: "Bebas Neue", sans-serif;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 300;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 300;
}

p, li, .read-more-btn {
    font-size: var(--p-size);
}


body {
    background-color: var(--black-100);
}

button.CTA {
    background-color: var(--primary-color);
    border: solid 2px var(--primary-color);
    font-size: var(--h3-size);
    font-family: "Bebas Neue", sans-serif;
    color: var(--black-5);
    border-radius: .6rem;
    padding: .8rem 3rem;
    transition: border 0.3s ease;
    transition: background-color 0.3s ease;
    opacity: 0;
    animation:
        fadeIn 4s ease forwards 2s,
        borderFlash .75s ease 5s;
    cursor: pointer;
}

button.CTA:hover {
    background-color: var(--color-transparent);
    color: var(--black-5);
}

section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    padding-left: clamp(1rem, 12vw, 15rem);
    padding-right: clamp(1rem, 12vw, 15rem);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* MAIN MENU */
.mobile-nav-toggle {
    display: none;
    border: none;
}

@media (max-width: 50rem) {
    .mobile-nav-toggle {
        display: block;
        position: fixed;
        background: url(assets/hamburger-icon-white.svg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 2rem;
        aspect-ratio: 1;
        top: 2rem;
        right: 2rem;
        z-index: 9999;
    }
}

.nav-links {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 3rem;
    text-align: left;
}

.nav-links > li {
    font-family: var(--bebas-font);
    font-size: var(--p-size);
    cursor: pointer;
}

@media (max-width: 50rem) {
    .nav-links > li {
        font-size: var(--h2-size);
    }
}

.nav-links > li:hover {
    color: var(--black-75);
}

@media (max-width: 50rem) {
    .primary-navigation {
        position: fixed;
        inset: 0 0 0 30%;
        background: hsl(320 16% 25%);
        backdrop-filter: blur(1rem);
        z-index: 8000;
        transform: translateX(100%);
        transition: transform 350ms ease-out;
    }

    @supports (backdrop-filter: blur(1rem)) {
        .primary-navigation {
            background: hsl(320 16% 25% / 0.75);
            backdrop-filter: blur(1rem);
        }
    }

    .nav-links {
        flex-direction: column;
        gap: 3rem;
        padding: min(30vh, 10rem) 2em;

    }

    .primary-navigation[data-visible="true"] {
        transform: translateX(0%);
    }
}

/* HERO SECTION */
header {
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('assets/smiling-girl.jpg');
    background-size: cover;
    background-position: center center;
    border-bottom-left-radius: 50% 30px;
    border-bottom-right-radius: 50% 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (max-width: 50rem) {
    header {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('assets/side-court.jpg');
        justify-content: center;
        background-position: -58rem 0rem;
        background-size: 450%;
    }
}

header > h1 {
    font-size: clamp(4rem, 5vw + 1rem, 8rem);
}

header > h2 {
    font-size: var(--h3-size);
}

@media (max-width: 50rem) {
    header > h2 {
        max-width: 40ch;
    }
}

.logo {
    width: clamp(15rem, 20vw, 25rem);
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.5));
    z-index: -5;
}

.BOGA1 {
    position: absolute;
    left: 4rem;
    bottom: 6rem;
}

.BOGA1-Section {
    display: none;
}

@media (max-width: 50rem) {
    .BOGA1 {
        display: none;
    }

    .BOGA1-Section {
        display: block;
        min-height: auto;
    }
}

/* STAKES2 */

.stakes2-parentdiv {
    display: flex;
    flex-direction: row;
    gap: 10rem;
}

@media (max-width: 50rem) {
    .stakes2 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .stakes2-parentdiv {
        flex-direction: column;
        gap: 3rem;
    }
}

.stakes2-parentdiv > div > img {
    width: 11rem;
    aspect-ratio: 1;
}

.stakes2-parentdiv > div > h1 {
    font-size: var(--h2-size);
    color: var(--black-50);
}



/* .valueprop3 */
.valueprop3 {
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('assets/sunset-paddle.jpg');
    background-size: cover;
    background-position: center center;
}

.valueprop3 > h1, .valueprop3 > h2, .valueprop3 > h3 {
    text-shadow: 0px 2px 25px rgba(0, 0, 0, 0.979);
}

.valueprop3 > h2 {
    font-size: var(--h3-size);
}

/* .guide4 */



.col2-group {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.col2-group > div {
    background-color: var(--black-25);
    border-radius: 1rem;
    padding: 1rem;
}

.col2-group > div > h1 {
    font-size: var(--h3-size);
    color: var(--primary-color);
}

.col2-group > div > p {
    color: var(--black-75);
}

@media (max-width: 50rem) {
    .guide4 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .col2-group {
        flex-direction: column;
        gap: 3rem;
    }
}

/* .plan5 */
.plan5 {
    background-image:
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
    url('assets/sunshine-family.jpg');
    background-size: cover;
    background-position: center center;
}

.plan5 > h1 {
    color: var(--black-100);
    text-shadow: 0px 2px 25px rgba(255, 255, 255, 0.979);
}

.plan5-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 50rem;
    margin: 0 auto;
    padding: 1rem;
}

@media (max-width: 50rem) {
    .plan5-steps {
        grid-template-columns: 1fr;
    }

    .plan5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.plan5-indart {
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    min-height: 10rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 1rem;
}

.plan5-indart > h2, .plan5-indart > p {
    color: var(--black-100);
}

.plan5-indart > h2 {
    font-size: var(--h3-size);
    font-weight: 500;
}

.plan5 > button:hover {
    color: var(--primary-color);
}

/* .explanation6 */
.explanation6 {
    min-height: 60vh;
}

.explanation6-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.explanation6-container > h1 {
    font-size: var(--h2-size);
    margin-top: 3rem;
}

.read-more-btn {
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 3rem;
}

.default-displayed-text {
    display: inline;
}

.p-container > p {
    max-width: 60ch;
}

.hidden-text {
    display: none;
}

/* .options7 */

/* FOOTER */
footer {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.main-footer-container {
    display: flex;
    flex-direction: row;
    gap: 12rem;
    align-items: center;
    border-top: var(--black-5) 4px solid;
    padding-top: 3rem;
}

@media (max-width: 50rem) {
    .main-footer-container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-column2 {
        display: none;
    }
}

.footer-logo {
    width: 15rem;
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
    margin-top: 1rem;
}

.footer-menu > li {
    margin-bottom: 2rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--h3-size);
}

.footer-link {
    cursor: pointer;
}

.footer-link:hover {
    color: var(--black-50);
}

.copyright {
    font-size: var(--tiny-size);
}

.BOGA2 {
}