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


html {
    font-family: "Domine";
}

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);
}


/* -------------------------------------- */
/* ---  Basic page structure, layout  --- */
/* -------------------------------------- */


.section-heading {
    font-size: 2.0rem;
    margin: 0 0 75px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stripe-separator {
    height: 15px;
    width: 100%;
    border-top: 2px solid var(--border-color-regular);
    border-bottom: 2px solid var(--border-color-regular);
}


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

#section-intro {
    --overlay: rgb(83 38 8 / 95%);
    background:
      linear-gradient(var(--overlay),var(--overlay)), 
      url('img/background.png') center/cover no-repeat;                
    display: flex;
    align-items: end;
    justify-content: start;
    width: 100%;
    min-height: 100dvh;
    box-sizing: border-box;
    color: white;
    padding-bottom: 15dvh;
    padding-left: 10%;
}

/* Logo, positioned in the top right corner */
#intro-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 100px;
    width: auto;
    z-index: 1000;
}

#intro-contents {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#intro-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 700px;
    padding-right: 10%;
}

#intro-big-text {
    font-size: 2.5rem;
    text-align: left;
    margin: 0 0 20px 0;
}

#intro-sub-text {
    font-size: 1.2rem;
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 30px;
}

#intro-button {
    width: 300px;
    height: 60px;
    background-color: white;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 50px;
}

#intro-button:hover {
    border-color: white;;
    background: rgb(114, 73, 46);
    color: white;
}

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

/* ------------------------------ */
/* ---  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: rgb(253 250 241);;
    color: black
}

#explainer-section-header {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 100px 0;
}

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

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

.explainer-icon {
    height: 150px;
}

.explainer-step-header {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 0 0 0;
    text-align: center;
}

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


/* ------------------------------ */
/* ---  PRICING/FAQ section  ---- */
/* ------------------------------ */

#section-pricing-faq {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding: 150px 0;
    box-sizing: border-box;
    background: rgb(231 200 176);
    color: black
}

#pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20%;
    max-width: 300px;
    padding: 0 10% 0 0;
}

#pricing-background-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

#pricing-text-wrapper {
    position: relative;
    z-index: 1;
}

#pricing-header {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.pricing-details {
    text-align: center;
    font-size: 0.9rem;
    line-height: 25px;
    width: 100%;
    margin: 0 0 20px 0;
}

#pricing-icon-1, #pricing-icon-2 {
    height: 50px;
    width: auto;
    margin: 20px 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 rgb(199 164 141);
}

.faq-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid rgb(75, 42, 20);
}

.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;
}

.faq-question-group:hover {
    color: rgb(168, 132, 107);
}

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

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

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

/* -------------------------------- */
/* ---  CALL TO ACTION section  --- */
/* -------------------------------- */

#section-call-to-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 100px 0 60px 0;
    box-sizing: border-box;
    background: rgb(253 250 241);
    color: black
}

#intro-button-alt {
    width: 225px;
    height: 60px;
    background-color: transparent;
    color: rgb(114, 73, 46);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    border: 2px solid rgb(114, 73, 46);
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

#intro-button-alt:hover {
    background: rgb(114, 73, 46);
    color: white;
}


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


#section-footer {
    padding: 100px 0 25px 0;
    background: rgb(253 250 241);
    background-image: url('img/bookwall.png');
    background-size: cover;
    background-position: center;
}

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

#footer-logo {
    height: 75px;
    margin-right: 20px;
    background: white;
    border-radius: 100px;
}

.footer-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3%;
}

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

.footer-vertical a {
    font-size: 0.9rem;
    margin-top: 5px;
    width: fit-content;
    background: white;
    padding: 2px 5px;
    border-radius: 3px;
}

.footer-vertical a:hover {
    background: rgb(231 200 176);
}

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

}

#copyright-text-wrapper {
    width: 80%;
    padding-bottom: 10px;
    font-size: 0.7rem;
}

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

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


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

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

    #section-intro {
        justify-content: center;
        padding-bottom: 10dvh;
        padding-left: 0;
    }
    
    #intro-contents {
        flex-direction: column;
        align-items: start;
        width: 90%;
    }

    #intro-text-wrapper {
        width: 100%;
        padding-right: 0;
        align-items: start;
    }

    #intro-button {
        width: 225px;
    }

    /* --- PRICING/FAQ section ----------- */

    #pricing-wrapper {
        width: 30%;
        padding-right: 5%;
    }

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

}


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


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

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

    #explainer-steps-wrapper {
        flex-direction: column;
        align-items: center;

    }

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

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

    /* --- PRICING/FAQ section ----------- */

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

    #pricing-wrapper {
        width: 30%;
        padding-right: 5%;
    }

    #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 ----------------- */

    #intro-big-text {
        font-size: 2.0rem;
    }

    #intro-sub-text {
        font-size: 1.0rem;
        line-height: 25px;
    }

    #intro-button {
        width: 175px;
        height: 50px;
        font-size: 0.9rem;
    }

    /* --- PRICING/FAQ section ----------- */

    #section-pricing-faq {
        flex-direction: column;
        align-items: center;
    }

    #pricing-wrapper {
        width: 90%;
        padding: 50px 0 50px 0;
        border-bottom: 1px solid rgb(199 164 141);;
    }

    #pricing-background-img {
        padding-bottom: 25px;
        box-sizing: border-box;
    }

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

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

    #footer-logo {
        display: none;
    }

}