/* ---------- ONEDRAFT TEMPLATE INFORMATION ---------- */
/*
Author: Barend Nagel
Date Created: 11 May 2024
Copyright: All Rights Reserved
*/
/* ---------- ONEDRAFT TEMPLATE INFORMATION END ---------- */

/* ---------- START GLOBAL STYLES ---------- */

* {
    margin: 0;
    font-family: "Urbanist", sans-serif;
}

*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --base: #a59c8f;
    --basetransparent: rgba(165, 156, 143, 0.65);
    --lightblue: #304451;
    --darkblue: #0d2433;
    --none: rgba(255, 255, 255, 0);
}

/* ---------- END GLOBAL STYLES ---------- */

/* ---------- START HEADING STYLES ---------- */

h2 {
    font-family: "Urbanist", sans-serif;
    font-size: 3vw;
    font-weight: normal;
}

h3 {
    font-family: "Caveat", cursive;
    font-size: 3rem;
    font-weight: normal;
    line-height: 3rem;
    padding-bottom: 10px;
}

/* ---------- END HEADING STYLES ---------- */


/* Header Style */

header {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-around;
    align-items: center;
    background-color: var(--basetransparent);
    padding: 10px;
    z-index: 10;
}

header img {
    width: 50%;
}

header li {
    display: inline;
    padding: 20px;
    font-size: 1.2rem;
    color: white;
}

header li a {
    text-decoration: none;
    color: white;
    border-bottom: solid 1px var(--none);
    padding: 5px;
    font-weight: 300;
}

header li a:hover {
    border-bottom: solid 1px white;
}

/* Hero Style */

section {
    z-index: 1;
}

.hero-image {
    height: 90vh;
    width: 100%;
    background-image: url("images/clean-cut-copy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    margin-top: -140px;
    z-index: 1;
}

.hero-content {
    padding-top: 20%;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 20px;
}

.hero-text {
    padding: 10px;
    font-size: 3vw;
    text-align: right;
}

.hero-text span {
    font-family: "Caveat", cursive;
    font-size: 3.5vw;
    color: black;
    background-color: white;
    font-weight: 200;
}

.hero-cta {
    border: solid 1px white;
    width: 250px;
    font-size: 1.2rem;
    padding: 10px;
    font-weight: 200;
    justify-self: end;
    cursor: pointer;
}

.hero-cta:hover {
    border: solid 1px var(--basetransparent);
    background-color: var(--basetransparent);
}

/* ---------- START MAIN SECTION STYLE ---------- */

main {
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    width: 80%;
}

/* ---------- END MAIN SECTION STYLE ---------- */

/* Brand Quilt Style */

.client-section {
    background-color: var(--base);
}

.client-section-title {
    margin: auto;
    width: 75%;
    padding-top: 40px;
    color: white;
}

.client-section-title hr {
    width: 250px;
}

.client-quilt {
    margin: auto;
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 10px 20px 30px 20px;
}

.client-quilt img {
    width: 50%;
    padding: 20px;
}

/* Footer Style */

footer {
    color: var(--base);
}

.footer-top {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-around;
    align-items: center;
    height: 150px;
    background-color: var(--lightblue);
    padding: 20px;
}

.quick-links {
    padding: 5px;
}

.quick-links ul {
    display: grid;
    grid-template-columns: auto auto;
    padding: 5px;
    color: var(--darkblue);
}

.quick-links li {
    list-style: none;
    padding: 0px 15px 0px 0px;
}

.quick-links a {
    color: var(--base);
    text-decoration: none;
    border-bottom: solid 1px var(--none);
}

.quick-links a:hover {
    color: var(--darkblue);
    border-bottom: solid 1px var(--darkblue);
}

.social-media img {
    width: 30px;
    cursor: pointer;
    border-bottom: solid 1px var(--none);
    padding: 5px;
}

.social-media img:hover {
    cursor: pointer;
    border-bottom: solid 1px var(--base);
}

.footer-bottom {
    text-align: center;
    background-color: var(--darkblue);
    padding: 20px;
}
