/* ------------------------------ */
/* ---  Generic tag styling  ---- */
/* ------------------------------ */


html {
    font-family: "Crimson Pro";
}

body {
    margin: 0;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

a:link, a:visited, a:active {
    color: inherit;
}

.text-link {
    text-decoration: underline;
}

.text-link:hover {
    color: rgb(168, 132, 107);
}


/* ------------------------------------ */
/* ---  INTRO section  ----------------- */
/* ------------------------------------ */

#section-intro {
    background: linear-gradient(rgb(255 255 255 / 55%), rgba(255, 255, 255, 0.90)), url(img/intro-background.png) center / cover no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    box-sizing: border-box;
    color: black;
}

#intro-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    height: 100px;
    width: auto;
    z-index: 1000;
    font-weight: lighter;
    font-style: italic;
    font-size: 1.8rem;
    color: lightslategray;
    text-align: center;
}

#intro-contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    height: 80%;
}

#intro-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-right: 25px;
    box-sizing: border-box;
}

#intro-big-text {
    font-size: 4.5rem;
    font-weight: normal;
    text-align: left;
    margin: 0 0 35px 0;
}

#intro-sub-text {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 35px;
    max-width: 600px;
}

#intro-right-contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 250px;
}

.guide-preview {
    width: 100%;
    aspect-ratio: 26 / 35;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.linked-hover-parent:has(.linked-hover:hover) .guide-preview {
    background-color: rgb(240, 240, 240);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}


.guide-preview-title {
    font-size: 1.6rem;
    font-weight: normal;
    padding: 20px 0 0 0;
    margin: 0 0 10px 0;
}

.guide-preview-description {
    font-size: 0.9rem;
    text-align: center;
    margin: 0 0 10px 0;
    font-style: italic;
    padding: 10px;
    width: 75%;
}

.guide-preview-author {
    font-size: 0.9rem;
    color: gray;
    margin: auto 0 15px 0;
}

#intro-button {
    width: 100%;
    height: 45px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

#intro-button-strikethrough {
    text-decoration: line-through;
    color: gray;
}

.linked-hover-parent:has(.linked-hover:hover) #intro-button {
    background: rgb(41, 41, 41);
}

.button-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro-button-subtext {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: rgb(68, 68, 68);
    margin: 0;
}

/* ------------------------------ */
/* ---  EXPLAINER section  ------ */
/* ------------------------------ */

.section-explainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 150px 0 150px 0;
    box-sizing: border-box;
    background: white;
    color: black;
}

.explainer-section-header {
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    margin: 0 0 60px 0;
}

.explainer-steps-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 90%;
}

#explainer-steps-wrapper-2 {
    padding-top: 25px;
}

.explainer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 25%;
    max-width: 300px;
    padding: 0 3%;
}

.explainer-column-2 {
    justify-content: center;
    margin: 0 3%;
    background: white;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 175px;
    width: 90%;
    max-width: 300px;
    border-radius: 8px;
}

.explainer-icon {
    height: 150px;
    padding-bottom: 20px;
}

.explainer-step-header {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    text-align: center;
}

.explainer-step-text {
    font-size: 0.9rem;
    margin: 20px 0 0 0;
    width: 90%;
    text-align: center;
    line-height: 25px;
}

.explainer-step-bullets {
    text-align: center;
}

.explainer-step-bullets p {
    margin: 15px 0 0 0;
    font-style: italic;
}


/* --------------------------------- */
/* ---  EXPLAINER section #2  ------ */
/* --------------------------------- */


#section-explainer-2 {
    background: #ededed;
}


/* -------------------------- */
/* ---  ABOUT section  ------ */
/* -------------------------- */

#section-about {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding: 200px 0;
    box-sizing: border-box;
    background: black;
    color: white;
}


#about-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;
    max-width: 700px;
    padding-right: 6%;
}


#about-section-header {
    font-size: 2.5rem;
    font-weight: normal;
    text-align: center;
    margin: 0 0 20px 0;
}

#about-bullets-wrapper {
    list-style-type: disclosure-closed;
    padding-inline-start: 25px;
    width: 100%;
    box-sizing: border-box;
}

.about-bullet {
    font-size: 1.2rem;
    line-height: 25px;
    width: 100%;
    margin: 0 0 15px 0;
}

.about-bullet::marker {
    font-size: 0.7em;
}

.about-bullet a {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-decoration-color: white;
    transition: all 0.3s ease;
}

.about-bullet a:hover {
    color: rgb(206, 206, 206);
    text-decoration-color: rgb(206, 206, 206);;
}

#about-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    max-width: 175px;
    padding-left: 8%;
    border-left: 1px solid rgb(145, 145, 145);
}

#about-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
}


/* -------------------------- */
/* ---  CTA/FAQ section  ---- */
/* -------------------------- */

#section-cta-faq {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-height: 80vh;
    padding: 150px 0;
    box-sizing: border-box;
    background: linear-gradient(rgb(255 255 255 / 55%), rgba(255, 255, 255, 0.90)), url(img/background-2.png) center / cover no-repeat;
    color: black;
}

#faq-guide-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30%;
    max-width: 250px;
    padding: 0 10% 0 0;
}

#faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    max-width: 500px;;
    padding-left: 10%;
    border-left: 1px solid black;
    color: black;
}

.faq-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid black;
}

.faq-question-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    padding: 25px 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.faq-question-group:hover {
    color: rgb(134, 134, 134);
}

.faq-question {
    font-size: 0.95rem;
    font-weight: bold;
    width: 80%;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}

.faq-dropdown-icon {
    width: 13px;
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 23px;
    width: 90%;
    margin: 0;
    padding: 0 10px 15px 10px;
    box-sizing: border-box;
    display: none;
}


/* ------------------------------ */
/* ---  FOOTER section  --------- */
/* ------------------------------ */


#section-footer {
    padding: 0 0 25px 0;
    background: rgb(0, 0, 0);
    background-size: cover;
    background-position: center;
    color: white;
}

#footer-contents {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    padding: 75px 0;
}

#footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 5%;
    border-right: 1px solid rgb(145, 145, 145);
}

#footer-logo {
    font-size: 2.0rem;
    padding-bottom: 9%;
    font-weight: lighter;
    text-align: center;
}

.footer-vertical {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 5%;
}

.footer-vertical-heading {
    font-size: 0.9rem;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 1px;
    padding: 2px 5px;
    border-radius: 3px;
}

.footer-vertical a {
    font-size: 0.9rem;
    margin-top: 5px;
    width: fit-content;
    padding: 2px 5px;
    border-radius: 3px;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.footer-vertical a:hover {
    text-decoration-color: white;
}

#copyright-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

#copyright-text-wrapper {
    width: 80%;
    padding-bottom: 10px;
    padding-top: 15px;
    font-size: 0.7rem;
    border-top: 1px solid rgb(145, 145, 145);
}

#copyright-text {
    padding: 2px 5px;
    border-radius: 3px;
}

/* ---------------------------------------------------- */
/* ----- CSS for NARROW WINDOW / MOBILE --------------- */
/* ---------------------------------------------------- */


@media only screen and (max-width: 1400px) {

    /* --- INTRO section ----------------- */
    
    #intro-contents {
        width: 90%;
    }

    /* --- ABOUT section ----------------- */

    #about-text-wrapper {
        width: 60%;
        padding-right: 25px;
    }

    #about-image-wrapper {
        padding-left: 5%;
    }

    /* --- CTA/FAQ section ----------- */

    #faq-wrapper {
        width: 40%;
        padding-left: 5%;
    }

}


@media only screen and (max-width: 1000px) {


    /* --- EXPLAINER section ------------- */

    .section-explainer {
        padding: 75px 0;
    }

    .explainer-section-header {
        width: 90%;
        max-width: 380px;
        margin: 0 0 50px 0;
    }

    .explainer-steps-wrapper {
        flex-direction: column;
        align-items: center;
        width: 95%;
    }

    .explainer-column {
        width: 90%;
        padding: 0 0 50px 0;
    }

    #explainer-steps-wrapper-2 {
        padding: 0;
    }

    .explainer-column-2 {
        padding: 25px;
        margin: 20px 0;
    }

    /* --- CTA/FAQ section ----------- */

    #section-cta-faq {
        padding: 100px 0;
    }

    #faq-wrapper {
        width: 40%;
        padding-left: 5%;
    }

    /* ---  FOOTER section  --------------- */

    #section-footer {
        background-position: left;
    }
    
    #copyright-text-wrapper {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 5px;
    }

}


@media only screen and (max-width: 900px) {

    /* --- INTRO section ----------------- */

    #section-intro {
        background: linear-gradient(rgb(255 255 255 / 75%), rgba(255, 255, 255, 0.90)), url(img/intro-background.png) center / cover no-repeat;
    }

    #intro-logo {
        display: none;
    }

    #intro-contents {
        justify-content: center;
        flex-direction: column;
        height: 100%;
    }

    #intro-text-wrapper {
        padding-right: 0;
        align-items: center;
    }

    #intro-big-text {
        font-size: 2.1rem;
        text-align: center;
        margin-bottom: 35px;
    }

    #intro-sub-text {
        font-size: 1.0rem;
        line-height: 23px;
        text-align: center;
        margin-bottom: 35px;
    }

    #intro-right-contents {
        width: 215px;
    }

    /* --- ABOUT section ----------------- */

    #section-about {
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
    }

    #about-text-wrapper {
        width: 75%;
        padding-right: 0;
    }

    #about-image-wrapper {
    border: none;
        padding: 40px 0;
        width: 90%;
    }

    /* --- CTA/FAQ section ----------- */

    #section-cta-faq {
        flex-direction: column-reverse;
        align-items: center;
        background: linear-gradient(rgb(255 255 255 / 75%), rgb(255 255 255 / 95%)), url(img/background-2.png) center / cover no-repeat;
    }

    #faq-guide-preview {
        padding: 0;
        width: 90%;
    }

    #faq-wrapper {
        width: 90%;
        padding: 0 0 75px 0;
        border-left: none;
    }

    /* --- FOOTER section --------------- */

    #footer-contents {
        flex-direction: column;
        align-items: center;
    }

    #footer-logo-wrapper {
        padding: 0 0 50px 0;
        border-right: none;
        border-bottom: 1px solid rgb(145, 145, 145);
    }

    #footer-logo {
        padding-bottom: 0;
    }

    .footer-vertical {
        padding: 50px 0 0 0;
        align-items: center;
    }

}