/* This stylesheet is just for the index/homepage of ToN.art v.4

CONTENTS
    01. HERO IMAGE
    02. ASSETS
    03. IMAGE STUFF
    04. ETC

*/

/* || [01. HERO IMAGE] ------------------------------------ */

.heroImage {
    background-image: linear-gradient(rgba(0, 0, 0, 0.647), rgba(24, 31, 3, 0.435)), url("../assets/branding/heroImage.gif");
    background-attachment: fixed;
    height: 55%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    box-shadow: inset 0px 0px 10px 1px var(--shadow-color);

}

.heroText {
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 10px;
  }

.heroText h2 {
    font-family: 'Grenze Gotisch', serif;
    letter-spacing: 0.04em;
    font-weight: 300;
}

.heroFooter {
    height: 75px;
    background-color: black;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    color: var(--mid-color);
}

/* mobile phones were a mistake. */
@media only screen and (max-width: 675px) {
    .heroLogo {
        width: 70%;
    }

    .heroText h2 {
        font-size: medium;
    }
}

 /* || [01. CONTENT BLOCKS] ------------------------------------ */

.indexContentBlockArch {
    width: 45%;
   
    padding: 20px;

    background-color: var(--content-box-color);

    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.indexContentBlockArch img {
    margin: auto;
    width: 100%;
}

.indexContentBlockArch h2 {
    text-align: center;
}


.indexContentBlockSquare {
    width: 45%;
    height: 300px;

    padding: 20px;
    margin-bottom: 20px;
}

.indexContentBlockBar {
    width: 95%;

    background-color: var(--content-box-color);

    padding: 20px;

    text-align: center;
}

.mainContent {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

  /* || [01. NAV TWEAK] ------------------------------------ */
.mainNavbar {
    height: 100px;
}

.mainNavbar .logo {
    display: none;
  }