/*--------------------------------------------------------------
----------------------------------------------------------------

    / michaeleverard.com
    / 02.18.2023

----------------------------------------------------------------
----------------------------------------------------------------

    / 01    -   Fonts
    / 02    -   Variables
    / 03    -   Settings
    / 04    -   Intro Section
    / 05    -   About Section
    / 06    -   Quote Section
    / 07    -   Experience Section
    / 08    -   Contact Section
    / 09    -   Footer

----------------------------------------------------------------
--------------------------------------------------------------*/


/* -----------------------------
01 - Fonts
------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* -----------------------------
02 - Variables
------------------------------*/

:root {
    --white: #ffffff;
    --lt-gray: #e6e6e6;
    --gray: #333333;
    --dk-gray: #282828;
    --black: #000000;
    --lt-footer: #a5a5a5;
    --dk-footer: #222222;
    --text: #4c4c4c;
    --type: #808080;
    --black-alpha-30: rgba(21, 41, 60, 0.30);
    --black-alpha-70: rgba(21, 41, 60, 0.70);
    --black-alpha-80: rgba(21, 41, 60, 0.80);
    --backdrop-blur: blur(5px);
}

/* -----------------------------
03 - Settings
------------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    background-image: url(../img/main/01_hero.jpg);
    background-repeat: no-repeat; 
    background-position: center;
    background-attachment: fixed;       
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    width: 100%; 
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
img {
    box-sizing: border-box;
}
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
h1 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 20px;
}
h2 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 15px;
}
h3 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 50px;
}
h4 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 30px;
}
h5 {
    font-size:14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
h6 {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 50px;
}
.sectionIntro h2 {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 80px;
}
.sectionIntro h2 span {
    padding: 25px 50px;
    border: solid 10px var(--dk-gray);
}
.separator {
    padding: 30px 0;
    margin-left: auto;
    margin-right: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.row {
    display: flex;
    flex-direction: column;
}
.vertical-center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*   Settings // Desktop  */
/*----------------------------*/

@media(min-width: 1000px) {
    body {
        background-image: url(../img/main/01_hero.jpg);
}
}

/*   Settings // Tablet   */
/*----------------------------*/

@media(max-width: 1000px) {
    body {
        background-image: url(../img/main/02_hero.jpg);
        background-attachment: scroll;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-repeat: no-repeat; 
        height: 100vh;
        width: auto;
    }
    .container {
        width: 100%;
        height: auto;
        padding: 0 20px;
    }
    .separator {
        padding: 10px 0;
        scale: 70%;
    }
}

/*   Settings // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    h2 {
        font-size: 18px;
        letter-spacing: 6px;
    }
    .sectionIntro h2 {
        padding-top: 100px;
    }
    .sectionIntro h2 span {
        padding: 20px 30px;
        border: solid 6px var(--dk-gray);
    }
    h6 {
        font-size: 20px;
    }
    .separator {
        padding: 10px 0;
    }
    .sectionCopy br {
        visibility: hidden;
        display: none;
    }
}

/*   Settings // Mobile 2  */
/*----------------------------*/

@media(max-width: 400px) {
    h3 {
        font-size: 22px;
        letter-spacing: 2px;
        line-height: 28px;
    }
    h4 {
        font-size: 16px;
        letter-spacing: 2px;
    }
    h6 {
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 34px;
    }
}

/* -----------------------------
04 - Intro Section
------------------------------*/

.intro-container {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    margin: 0 auto;
    padding: 0 40px;
}
.name h1 {
    text-align: center;
    color: var(--white);
}
.open-copy p {
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}
.open-copy p br {
    display: none;
}

/*   Intro // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    .intro-container {
        width: 100%;
        max-width: 900px;
        height: 100vh;
        padding: 0 15px;
    }
    .name {
        text-align: center;
    }
}

/*   Intro // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    .intro-container {
        width: 100%;
        max-width: 600px;
        height: 100vh;
        padding: 0 10px 18px 10px;
    }
    h1 {
        font-size: 26px;
        letter-spacing: 10px;
    }
    h5 {
        font-size:10px;
        letter-spacing: 2px;
    }
    .open-copy p br {
        display: block;
    }
}

/* -----------------------------
05 - About Section
------------------------------*/

#about {
    background-color: white;
    z-index: 100;
}
#about .separator {
    padding: 60px 0;
}
.aboutGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    height: 100%;
    padding-bottom: 200px;
}
.leftSide img {
    padding-top: 20px 200px 0 200px;
    height: auto;
}
.rightSide p {
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 16px;
}
.sectionCopy p {
    text-align: center;
    font-weight: 500;
    line-height: 24px;
}
.rightSide h3 {
    margin-top: -15px;
    padding-bottom: 16px;
}

/*   About // Tablet   */
/*----------------------------*/

@media(max-width: 1000px) {
    #about .container {
        max-width: 900px;
        padding: 0 15px 100px 15px;
    }
    .aboutGrid {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        padding: 0 30px; 
        overflow: hidden;
    }
    .leftSide img {
        padding: 0 30px;
    }
    .leftSide p {
        padding: 3px 0 10px 0;
        text-align: center;
        font-size: 10px;
        line-height: 11px;
    }
    #about .rightSide {
        padding: 0 50px 60px 50px;
        text-align: center;
    }
    .rightSide p {
        padding-bottom: 15px;
    }
    .rightSide p br {
        visibility: hidden;
        display: none;
    }
}
@media(max-width: 900px) {
    #about .rightSide {
        padding: 0 30px 40px 30px;
        text-align: center;
    }
}

/*   About // Mobile   */
/*----------------------------*/

@media(max-width: 760px) {
    #about .container {
        padding-bottom: 30px;
    }
    #about .rightSide {
        padding: 0 15px 20px 15px;
        text-align: center;
    }
    .aboutGrid {
        display: flex;
        flex-direction: column;
        padding: 0 10px 60px 10px;
    }
    .leftSide {
        padding: 0 20px;
    }
    .rightSide p {
        padding: 0 20px 20px 15px;
    }
    .rightSide h3 {
        padding: 0 20px 0 15px;
        line-height: 40px;
        padding-bottom: 20px;
    }
}

/*   About // Mobile 2   */
/*----------------------------*/

@media(max-width: 400px) {
    #about .container {
        padding-bottom: 10px;
    }
    #about .rightSide {
        padding: 0 10px 0 10px;
        text-align: center;
    }
    .rightSide h3 br {
        visibility: hidden;
        display: none;
    }
    .leftSide br {
        visibility: visible;
        display: block;
    }
    .leftSide p {
        line-height: 20px;
    }
    #about .separator {
        padding: 40px 0;
    }
}

/* -----------------------------
06 - Quote Section
------------------------------*/

#quote {
    height: 600px;
    width: 100vw;
    position: relative;
    z-index: -100;
}
.quotePart-2 img {
    width: 100vw;
    height: auto;
    position: absolute;
    margin-top: -1000px;
    z-index: -100;
}

.quotePart-1 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}
.quotePart-1 h6 {
    color: var(--white);
    text-align: center;
}

/*   Quote // Tablet   */
/*----------------------------*/

@media(max-width: 1200px) {
    .quotePart-1 h6 {
        padding: 0 100px;
        line-height: 28px;
    }
}
@media(max-width: 1000px) {
    #quote {
        height: 260px;
        background-color: var(--dk-gray);
    }
    .quotePart-1 h6 {
        padding: 0 150px;
        line-height: 28px;
    }
    .quotePart-2 img {
        visibility: hidden;
        display: none;
    }
}
@media(max-width: 800px) {
    .quotePart-1 h6 {
        padding: 0 80px;
        line-height: 28px;
    }
}

/*   quote // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    #quote {
        height: 200px;
    }
    .quotePart-1 h6 {
        padding: 0 20px;
    }
}

/* -----------------------------
07 - Expperience Section
------------------------------*/

#experience {
    background-color: var(--white);
}
#experience .container {
    width: 900px;
}
#experience .separator {
    padding: 100px 0;
}
#experience .button {
    padding: 60px 0 200px 0;
}
.sectionExp {
    text-align: center;
}

/*   Experience // Tablet   */
/*----------------------------*/

@media(max-width: 1000px) {
    #experience .container {
        max-width: 900px;
        width: 100%;
        padding: 0 15px;
    }
    #experience .separator {
        padding: 40px 0;
    }
    #experience .button {
        padding-bottom: 80px;
    }
}

/*   Experience // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    #experience .container {
        max-width: 600px;
        width: 100%;
        padding: 0 15px;
    }
}

/* -----------------------------
08 - Contact Section
------------------------------*/

#contact {
    background-color: var(--white);
}
#contact .container {
    width: 900px;
}
#contact .sectionCopy {
    padding-bottom: 55px;
}
.sectionImg {
    padding: 0 200px 200px 200px;
}
.sectionImg  img{
    width: 100%;
    height: auto;
}

/*   Contact // Tablet   */
/*----------------------------*/

@media(max-width: 1000px) {
    #contact .container {
        max-width: 900px;
        width: 100%;
        padding: 0 15px;
    }
    .sectionImg {
        padding: 0 80px 100px 80px;
    }
}

/*   Contact // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    #contact .container {
        max-width: 600px;
        width: 100%;
        height: auto;
        padding: 0 15px;
    }
    #contact .sectionCopy br {
        visibility: hidden;
        display: none;
    }
    .sectionImg {
        padding: 0 70px 100px 70px;
    }
}

/*   Contac // Mobile 2  */
/*----------------------------*/

@media(max-width: 400px) {
    .sectionImg {
        padding-bottom: 60px;
    }
    .sectionImg {
        padding: 0 30px 60px 30px;
    }
}

/* -----------------------------
09 - Footer
------------------------------*/

#footer {
    padding: 50px;
    margin: o auto;
    background-color: var(--dk-footer);
    text-align: center;
}
#footer p {
    color: var(--lt-footer);
    font-size: 12px;
}
.backToTop {
    color: var(--lt-footer);
    scroll-behavior: smooth;
}
.backToTop a, .backToTop h5 {
    color: var(--lt-footer);
}
.backToTop a:hover, .backToTop h5:hover {
    color: var(--white);
}
.footerSocial {
    list-style: none;
    padding: 20px;
}
.footerSocial li {
    display: inline;
    margin: 0 10px;
}
.footerSocial li a {
    color: var(--lt-footer);
}
.footerSocial li a:hover {
    color: var(--white);
}

/*   Footer // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    #footer {
        max-width: 900px;
        width: 100%;
        padding: 20px;
    }
}

/*   Footer // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    #footer {
        max-width: 600px;
        width: 100%;
    }
    .footerSocial {
        visibility: hidden;
        display: none;
    }
    .backToTop {
        padding-bottom: 20px;
    }
    #footer p br {
        display: block;
    }
    #footer p {
        line-height: 18px;
    }
}
