@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');

/*------------------------------------------------------ navbar */

.logo {
    height: 50px;
    padding-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#main-nav {
    padding-right: 30px;
}

#main-nav .active {
    color: #A1FAF5;
}

.navbar {
    background-color: transparent;
}

.nav-link {
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    color: #F7F7F7;
    padding-left: 25px;
}

.nav-link:hover {
    color: #A1FAF5;
}

.navbar-toggler {
    border: none;
    color: #F7F7F7;
}

.navbar-toggler:hover {
    color: #A1FAF5;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.solid {
    background-color: #102930;
    transition: background-color 0.5s ease 0s;
    box-shadow: 0 0 4px black;
}

.navbar-subpage {
    background-color: #102930;
    box-shadow: 0 0 4px black;
}

/*------------------------------------------------------ hero shot */

.hero-container {
    width: 100%;
}

.hero-img {
    background-image: url("../img/hero_shot.png");
    background-position: center 80%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.cover-text {
    color: #F7F7F7;
    top: 120px;
    left: 40px;
    position: absolute;
}

.cover-text h1, .cover-text-2 h2 {
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
}

.cover-text p {
    width: 35vw;
    font-family: Oxygen, sans-serif;
    font-size: 18px;
}

.cover-text-2 {
    color: #F7F7F7;
    bottom: 80px;
    right: 40px;
    position: absolute;
    text-align: right;
}

.cover-text-2 p {
    font-family: Oxygen, sans-serif;
    font-size: 18px;
    width: 80vw;
}

/*------------------------------------------------------ animated arrow */

/* following code sourced from: https://dzone.com/articles/css-bouncing-arrow */
.arrow {
    position: relative;
    bottom: -2rem;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
}

.bounce {
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-25px);
    }
    60% {
        transform: translateY(-15px);
    }
}
/* end of externally sourced code */

.fa-chevron-down {
    color: #F7F7F7;
}

.hero-container .arrow {
    position: absolute;
    bottom: 15px;
    left: 50%;
}

/*------------------------------------------------------ page contents */

p, li {
    font-family: Oxygen, sans-serif;
}

.page-content {
    padding-top: 10em;
}

.problem, .solution, .journey-text {
    margin-top: 70px;
}

.img-width-100 {
    width: 100%;
}

.img-height-100 {
    height: 100%;
}

.content-ext-10 {
    margin-bottom: 10px;
}

.content-ext-25 {
    margin-top: 25px;
}

.content-ext-60 {
    margin-bottom: 60px;
}

.content-last {
    margin-bottom: 70px;
}

.intro h1, .problem h1, .our-journey h1, .support h1, .thank-you h1 {
    text-align: center;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intro p, .problem p, .our-journey p, .support p, .thank-you p {
    text-align: center;
    margin-bottom: 25px;
}

.problem h1, .solution h1 {
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
}

/*------------------------------------------------------ home page specific */

.index-content {
    padding-top: 3em;
}

.solution ul {
    margin-bottom: 10px;
}

.tech {
    margin-bottom: 10px;
}

/*------------------------------------------------------ about page specific */

.journey-text h1 {
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.journey-text p {
    margin-bottom: 25px;
}

.video {
    width: 100%;
}

/*------------------------------------------------------ support page specific */

.support-items p {
    text-align: left;
}

.support-items a {
    color: #4CADAA;
    text-decoration: none;
    font-weight: 700;
}

/*------------------------------------------------------ subscribe page specific */

.signup-img {
    position: relative;
}

/*------------------------------------------------------ forms */

.subscribe-form, .collab-form {
    max-width: 70%;
    margin-left: 15%;
    position: relative;
    z-index: 1;
}

.subscribe-form h1, .collab-form h2, .submit-button {
    text-align: center;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
}

.subscribe-form label, .subscribe-form input, .collab-form label, .collab-form input {
    font-family: Oxygen, sans-serif;
}

.subscribe-form p {
    text-align: center;
}

.text-input, .submit-button {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
}

.text-input {
    border: 1.5px solid #595959;
    border-radius: 5px;
    background-color: #F7F7F7;
}

.text-input:hover {
    border-color: #A1FAF5;
}

.submit-button {
    border-radius: 5px;
    background-color: #102930;
    border: none;
    color: #F7F7F7;
}

.submit-button:hover {
    background-color: #A1FAF5;
    color: #102930;
}

.collab-form {
    margin-top: 50px;
}

/*------------------------------------------------------ footer */

footer {
    padding: 20px 30px 10px 30px;
    background-color: #102930;
}

#footer-details {
    color: #F7F7F7;
}

.social-links a {
    color: #F7F7F7;
}

.social-links li {
    list-style-type: none;
    float: right;
    margin-right: 30px;
}

.social-links li:first-child {
    margin-right: 0px;
}

.social-links a:hover {
    color: #A1FAF5;
}

/*------------------------------------------------------ media queries */

@media only screen and (max-width: 1199px) {
    .solution ul {
        display: none;
    }
    .solution img {
        object-fit: cover;
        height: 100%;
    }
}

@media only screen and (max-width: 992px) {
    [class*="col-md-"] {
        width: 100%;
    }
    .problem-fact {
        margin-top: 10px;
    }
    .about-header {
        width: 33%;
    }
    .about-ext {
        margin-top: 25px;
    }
    .cover-text p {
        width: 50vw;
    }
    .support-items h2 {
        font-family: 'Fjalla One', sans-serif;
        text-transform: uppercase;
        font-size: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .cover-text {
        background-color: rgba(89, 89, 89, 0.75);
        padding: 10px 10px 0 10px;
        border-radius: 2px;
        margin-left: -15px;
        margin-right: 20px;
    }
    .collapse {
        background-color:#102930;
    }
    .navbar {
        background-color: #102930;
    }
}

@media only screen and (max-width: 576px) {
    .about-header {
        display: none;
    }
    .our-journey p {
        text-align: left;
    }
}

@media only screen and (max-width: 575px) {
    #footer-details p {
        float: right;
    }
    .cover-text p {
        width: 70vw;
    }
}

@media only screen and (min-width: 1201px) {
    .subscribe-form, .collab-form {
        width: 840px;
        margin-left: calc((100vw - 840px)/2);
    }
}

@media screen and (min-height: 875px) and (max-height: 1370px) {
    .signup-footer {
        position: absolute;
        bottom: 0;
    }
}