 /* DevotedInTime.com homepage style definitions */

.dit-rob-container {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
    align-items:center;
    width: 100%;
    height: 100vh;
}

.dit-rob {
    display: block;
    max-width: 100%; height: auto;
}

/** homepage dit logo */
.mobile-home-logo {
    width: 100%;
    height: auto;
    z-index: 5;
}

.dit-title-container {
    position: fixed;
    bottom: 3rem;
    width:100%;
    max-width: 500px;
    align-items: center;
    padding: 0 1rem;
}
/* end mobile homepage content styles ****************************************/


@media (min-width: 600px) {

    /** begin mobile body style definitions */
    .dit-rob-container {
        position: relative;
        width: 100%;
        /* height: auto; */
    }

    .dit-rob {
        display: block;
        max-width: 100%; height: auto;
    }

    /** homepage dit logo */
    .mobile-home-logo {
        width: 100%;
        height: auto;
        z-index: 5;
    }

    .dit-title-container {
        position: fixed;
        bottom: 3rem;
        width:100%;
        align-items: center;
        padding: 0 1rem;
    }
    /* end mobile homepage content styles ****************************************/

} /* end min-width: 600px */

@media (min-width: 800px) {
    
    .homepage-content-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* margin-top: 10rem; */
        padding: 1rem;
        /* background-color:sienna ; */
     }

    .dit-logo-container {
        position: relative;
        display: block;
        width: 100%;
    }

    .dit-logo-img {
        width: 90%;
        height: auto;
    }

    /** home page style - creates space between buttons */
    .homepage-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
        gap: 15rem;
    }

    /* :root {
        --btn-w-min: 150px;
        --btn-w-ideal: 24vw;
        --btn-w-max: 208px;
    }

    .dit-homepage-btn {
        width: clamp(var(--btn-w-min), var(--btn-w-ideal), var(--btn-w-max));
        height: 45px;
    } */

    /** positions subscribe button on homepage */
    .dit-btn-container {
        position: absolute;
        top: 2.5rem;
        right: 6rem;
        width: auto;
        height: auto;
    }

    .dit-homepage-btn {
        color: #FFF;
        text-align: center;
        vertical-align: middle;
        font-family: "Noto Sans";
        font-size: .75rem;
        /* font-style: normal; */
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 5px;
        text-transform: uppercase;
        border-radius: 10px;
        border: 2px solid #FFF;
        background: rgba(0, 0, 0, 0.64);
        padding-left: .65rem;
        cursor: pointer;
    }

    .navbar-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom) + .5rem); /* iOS safe area friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem 0 1rem 0;
        /* background-color: blue; */
    }
    
} /* end min-width: 800px */

@media (min-width: 992px) {

    .homepage-content-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* margin-top: 10rem; */
        padding: 1rem;
        /* background-color:sienna ; */
     }

    .dit-logo-container {
        position: relative;
        display: block;
        width: 100%;
    }

    .dit-logo-img {
        width: 90%;
        height: auto;
    }

    /** home page style - creates space between buttons */
    .homepage-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
        gap: 15rem;
    }

     :root {
    /* --btn-w-min: 220px; */
        --btn-w-min: 290px;
        --btn-w-ideal: 24vw; /* scales with viewport */
        --btn-w-max: 338px;
    }

    .dit-homepage-btn {
        width: clamp(var(--btn-w-min), var(--btn-w-ideal), var(--btn-w-max));
        height: 45px; /* or clamp(40px, 6vw, 48px) if you want height responsive too */
    }

    /** positions subscribe button on homepage */
    .dit-btn-container {
        position: absolute;
        top: 2.5rem;
        right: 6rem;
        width: auto;
        height: auto;
    }

    .dit-homepage-btn {
        color: #FFF;
        text-align: center;
        vertical-align: middle;
        font-family: "Noto Sans";
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 5px;
        text-transform: uppercase;
        border-radius: 10px;
        border: 2px solid #FFF;
        background: rgba(0, 0, 0, 0.64);
        padding-left: .65rem;
        cursor: pointer;
    }

    .navbar-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom) + .5rem); /* iOS safe area friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem 0 1rem 0;
        /* background-color: blue; */
    }
} /* end min-width: 992px */


@media (min-width: 1200px) {
    .homepage-content-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10rem;
        padding: 1rem;
        /* background-color:sienna ; */
     }

    .dit-logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* background-color: cornflowerblue; */
    }
    .dit-logo-img {
        width: 90%;
        height: auto;
    }

    /** home page style - creates space between buttons */
    .homepage-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
        gap: 15rem;
        /* background-color: darkcyan; */
    }

     :root {
    /* --btn-w-min: 220px; */
        --btn-w-min: 290px;
        --btn-w-ideal: 24vw; /* scales with viewport */
        --btn-w-max: 338px;
    }

    .dit-homepage-btn {
        width: clamp(var(--btn-w-min), var(--btn-w-ideal), var(--btn-w-max));
        height: 45px; /* or clamp(40px, 6vw, 48px) if you want height responsive too */
    }

    /** positions subscribe button in homepage header */
    .dit-btn-container {
        position: absolute;
        top: 2.5rem;
        right: 6rem;
        width: auto;
        height: auto;
    }

    .dit-homepage-btn {
        color: #FFF;
        text-align: center;
        vertical-align: middle;
        font-family: "Noto Sans";
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: 5px;
        text-transform: uppercase;
        border-radius: 10px;
        border: 2px solid #FFF;
        background: rgba(0, 0, 0, 0.64);
        padding-left: .65rem;
        cursor: pointer;
    }

    .navbar-container {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom) + .5rem); /* iOS safe area friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem 0 1rem 0;
        /* background-color: blue; */
    }

} /* end min-width: 1200px */
