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

                /* GENERAL CSS */
body {
    display: block;
    margin: 0;
    padding: 0;
    background-color: #141414;
    font-size: 16px;
    transition: .2s;
}
#content {
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    color: #FEC000;
}
p {
    font-family: 'Ubuntu', sans-serif;
    color: #FFFAEB;
}
section p {
    font-size: 1.2em;
    line-height: 2em;
}
a {
    color: #FEC000;
    text-decoration: none;
    transition: .2s;
}
a:hover {
    color: #FFFAEB;
    text-decoration: underline;
}

                /* NAVBAR */
header {
    position: fixed;
    z-index: 1;
    width: 100%;
    background-color: #000000;
    filter: drop-shadow(0px 10px 10px #222222);
}
#navbar {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 130px;
    max-width: 1200px;
    margin: 0 auto;
    transition: .2s;
}
.logo_link {
    justify-content: center;
}
#logo {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 auto;
    margin-top: -5px;
    transition: .2s;
}
#logo:hover {
    transform: scale(.95);
    filter: drop-shadow(0 0 0);
}
nav {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
}
.navlinks {
    padding: 1em;
    text-align: center;
    font-family: 'Comfortaa', cursive;
    color: #FFFAEB;
    text-decoration: underline;
    text-decoration-color: transparent;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    transition: .2s;
}
#active {
    color: #FEC000;
}
nav a:hover {
    text-decoration: underline;
}
main {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

                /* FOOTER */
footer {
    text-align: center;
    width: 100%;
    margin-top: 100px;
    background-color: #000000;
    filter: drop-shadow(0px -10px 10px #222222);
}
.footer-icon {
    margin: 1em;
    width: 75px;
    height: auto;
    border: none;
    border-radius: 50%;
    background-color: #FEC000;
    transition: .2s;
}
.footer-icon:hover {
    margin: .9em;
    padding: .1em;
    background-color: #FFFAEB;
}
#info {
    font-family: 'Comfortaa', cursive;
    color: #FFFAEB;
}
footer p a {
    font-family: 'Comfortaa', cursive;
    color: #FFFAEB;
    transition: .2s;
}
footer p a:hover {
    color: #FEC000;
}
.social {
    padding: .5em;
}
.social a img {
    margin: .4em;
    width: 50px;
    height: auto;
    padding: .1em;
    border: none;
    border-radius: 50%;
    filter: grayscale(.75);
    transition: .2s;
}
.social a img:hover {
    background-color: #FFFAEB;
    filter: grayscale(0);
}
.copyremarks {
    font-family: 'Comfortaa', cursive;
    font-size: .4em;
}

/* Page 1 - Home - Specific CSS */
.parallax1 {
    grid-column: 1/3;
    grid-row: 1/3;
    background-image: url(../media/rsz_01friendly-shiny.png);
    background-attachment: fixed;
    background-position: center;
    background-position-y: 130px;
    background-repeat: no-repeat;
    background-size: 1200px;
    width: 100%;
    height: 80.5vw;
    max-width: 1200px;
    max-height: 805px;
    border: none;
    border-radius: 0 0 15px 15px;
}
.p1-hero-msg {
    grid-column: 1/2;
    grid-row: 2/3;
    padding-left: 40px;
}
.home-title {
    text-align: center;
    margin: 0;
    font-size: 10em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px #222222,
                    -10px 10px 20px #222222,
                    10px -10px 20px #222222,
                    -10px -10px 20px #222222;
}
.home-subtitle {
    text-align: center;
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px #222222,
                    -10px 10px 20px #222222,
                    10px -10px 20px #222222,
                    -10px -10px 20px #222222;
}
.p1-txt-intro {
    padding: 40px;
}
.p1-txt-intro p {
    margin: 40px 0;
    padding-bottom: 40px;
    text-align: center;
}
.p1-txt-intro p:nth-of-type(4) {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}
.p1-logo-gallery {
    display: flex;
    justify-content: space-around;
}
.p1-logo-gallery a img {
    margin: 0 auto;
    padding: 10px;
    vertical-align: middle;
    width: auto;
    height: 7vw;
    max-height: 70px;
    border: 2px solid #141414;
    border-radius: 15px;
    filter: grayscale(.5);
    transition: .2s;
}
.p1-logo-gallery a img:hover {
    border: 2px solid #FFFAEB;
    transform: scale(.95);
    filter: grayscale(0);
}
.connect {
    margin-top: 80px;
    padding-top: 40px;
    width: 100%;
    background-color: #000000;
}
.connect p {
    margin: 0 40px;
    text-align: center;
    font-size: 1.2em;
}
#feedback {
    background-color: #FEC000;
    box-shadow: 0 5px 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 1em;
    /* make this element invisible until we are ready for it */
    display: none;
    color: #141414;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
}
.moveDown {
    margin-top: 3em;
}
.form-box {
    margin: 0 auto;
    width: 100%;
    align-self: center;
    padding: 2em 0;
    text-align: center;
}
input, textarea {
    font-family: 'Comfortaa', cursive;
    font-size: 1em;
    line-height: 1.5em;
    color: #FEC000;
    font-weight: 700;
    padding: 10px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    border: 2px solid #FEC000;
    background-color: #141414;
    transition: .2s;
}
input {
    display: inline-flex;
    width: 300px;
}
textarea {
    display: block;
    margin: 5px auto;
    width: 100%;
    min-width: 300px;
    max-width: 604px;
    min-height: 50px;
}
input:hover, textarea:hover {
    border-color: #FEC000;
    background-color: #000000;
    color: #FEC000;
}
input:focus, textarea:focus {
    border-color: #FFFAEB;
    background-color: #000000;
    color: #FEC000;
    font-weight: 300;
    outline: none;
}
input::placeholder, textarea::placeholder {
    color: #FFFAEB;
}
#name {
    border-radius: 15px 0 0 0;
}
#mail {
    border-radius: 0 15px 0 0;
}
#msg {
    border-radius: 0 0 15px 15px;
}
.submit-button {
    display: block;
    margin: 5px auto;
    background-color: #141414;
    color: #FFFAEB;
    font-family: 'Comfortaa', cursive;
    font-size: .8em;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid #FEC000;
    border-radius: 15px;
    transition: .2s;
}
.submit-button:hover {
    cursor: pointer;
    background-color: #FEC000;
    color: #141414;
    border-color: #FEC000;
}

/* Page 2 - Quick Guide - Specific CSS */
.parallax2 {
    grid-column: 1/3;
    grid-row: 1/3;
    background-image: url(../media/rsz_02thinking-shiny.png);
    background-attachment: fixed;
    background-position: center;
    background-position-y: 130px;
    background-repeat: no-repeat;
    background-size: 1200px;
    width: 100%;
    height: 80.5vw;
    max-width: 1200px;
    max-height: 805px;
    border: none;
    border-radius: 0 0 15px 15px;
}
.p2-hero-msg {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-right: 40px;
}
.p2-title {
    text-align: center;
    margin: 0;
    font-size: 7em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px #222222,
                    -10px 10px 20px #222222,
                    10px -10px 20px #222222,
                    -10px -10px 20px #222222;
}
.p2-subtitle {
    text-align: center;
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px #222222,
                    -10px 10px 20px #222222,
                    10px -10px 20px #222222,
                    -10px -10px 20px #222222;
}
.p2-txt-intro {
    padding: 40px;
}
.p2-txt-intro p {
    text-align: center;
}
.p2-txt {
    padding: 0 40px;
}
.p2-txt p {
    text-align: justify;
}
.p2-img-gallery {
    display: flex;
    justify-content: space-around;
}
.p2-img-gallery a {
    padding: 0 5px;
}
.p2-img-gallery a img {
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    height: auto;
    max-width: 250px;
    border: 2px solid #FEC000;
    border-radius: 15px;
    filter: grayscale(.5);
    transition: .2s;
}
.p2-img-gallery a img:hover {
    border: 2px solid #FFFAEB;
    transform: scale(.95);
    filter: grayscale(0);
}

/* Page 3 -  Builds - Specific CSS */
.parallax3 {
    grid-column: 1/3;
    grid-row: 1/3;
    background-image: url(../media/rsz_03building-shiny.png);
    background-attachment: fixed;
    background-position: center;
    background-position-y: 130px;
    background-repeat: no-repeat;
    background-size: 1200px;
    width: 100%;
    height: 80.5vw;
    max-width: 1200px;
    max-height: 805px;
    border: none;
    border-radius: 0 0 15px 15px;
}
.p3-hero-msg {
    grid-column: 2/3;
    grid-row: 2/3;
    padding-right: 40px;
}
.p3-title {
    text-align: right;
    margin: 0;
    padding-top: 100px;
    font-size: 7em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 10px 10px 20px #222222,
                    -10px 10px 20px #222222,
                    10px -10px 20px #222222,
                    -10px -10px 20px #222222;
}
.p3-txt-intro {
    padding: 40px;
}
.p3-txt-intro p {
    text-align: center;
}
.p3-thumbnail-gallery {
    display: flex;
    justify-content: space-around;
}
.p3-thumbnail-gallery img {
    margin: 0 auto;
    vertical-align: middle;
    width: auto;
    height: 15vw;
    max-height: 200px;
    border: 2px solid #141414;
    border-radius: 15px;
    filter: grayscale(.5);
    transition: .2s;
}
.p3-thumbnail-gallery img:hover {
    border: 2px solid #FFFAEB;
    transform: scale(.95);
    filter: grayscale(0);
}
.accordion {
    background-color: #000000;
    cursor: pointer;
    margin-top: 40px;
    padding: 1em;
    width: 100%;
    text-align: left;
    border: 2px solid #141414;
    /* border-radius: 15px; */
    outline: none;
    transition: 0.2s;
}
.accordion h2 {
    display: inline;
    line-height: 2em;
    padding-left: 40px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
    border: 2px solid #FFFAEB;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    /* display: none; */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}
.active {
    background-color: #FEC000;
    color: #141414;
}
.active h2 {
    color: #141414;
}

.accordion:after {
    content: '\276F'; /* Unicode character for "plus" sign (+) */
    font-size: 1.5em;
    line-height: 2em;
    color: #5C5C5C;
    float: left;
    margin-left: 20px;
    transform: rotate(90deg);
    transition: .2s;
}

.active:after {
    transform: rotate(270deg);
}

table, th, td {
    font-family: 'Ubuntu', sans-serif;
    color: #FFFAEB;
    border-collapse: collapse;
}
th, td {
    padding: .5em 1em;
    border-bottom: .1px solid #5C5C5C;
}
.table-title {
    background-color: #FEC000;
    color: #141414;
}
.table-gear {
    display: inline;
    width: 845px;
}
.table-info {
    display: inline;
    width: 355px;
}
.table-subtitle {
    background-color: #5C5C5C;
    color: #FFFAEB;
}

/* @media only screen and (max-width: 900px) { } */
/* @media only screen and (orientation: landscape) { } */