/*Regular Roboto*/

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('./Fonts/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('./Fonts/Roboto-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    src: url('./Fonts/Roboto-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('./Fonts/Roboto-Black.ttf') format('truetype');
    font-display: swap;
}

/*Italic Roboto*/

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: url('./Fonts/Roboto-ThinItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 200;
    src: url('./Fonts/Roboto-LightItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('./Fonts/Roboto-Italic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 600;
    src: url('./Fonts/Roboto-MediumItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 800;
    src: url('./Fonts/Roboto-BoldItalic.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 900;
    src: url('./Fonts/Roboto-BlackItalic.ttf') format('truetype');
    font-display: swap;
}

/*Variables*/

:root {
    --main-bg-color: rgb(20,25,25);
    --light-blue: rgb(120, 215, 215);
}

/*PAGE STYLES*/
html {
    margin: 0;
    padding: 0;
    font-family: Roboto,sans-serif;
    background-color: var(--main-bg-color);
    background-image: url('../Images/Backgrounds/BGShapes.svg');
    background-size: cover;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    color: white;
}

h2 {
    font-size: 4rem;
    margin-block-start: 0;
    margin-block-end: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,.7);
    margin: 0;
    padding: 0;
}

h5 {
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-block-start: 0;
    margin-block-end: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,.7);
    margin: 0;
    padding: 0;
}

a {
    color: rgb(120, 215, 215);
    text-decoration: none;
}
    a:hover {
        text-decoration: underline;
    }

.hero-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
}

.hero-image {
    width: 50vw;
    max-width: 50rem;
    height: auto;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin: 0;
    padding: 1rem 5vw;
}

.basic-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.pic-section {
    flex-direction: row;
}

.text-section {
    max-width: 50rem;
    width: 50vw;
    min-width: 20rem;
}

.pic-section-img {
    height: auto;
    width: 37vw;
    max-width: 37rem;
}

.section-title {
    color: white;
    font-size: 3rem;
    text-align: center;
}
.section-subtitle {
    font-size: 3rem;
    color: var(--light-blue);
    margin: 0;
    text-align: center;
}

/* Individual Elements */

.turquoise-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 8px solid white;
    border-radius: 10px;
    padding: 0;
    height: 3.625rem;
    width: max-content;
    min-width: 7rem;
    max-width: 15rem;
    background-color: rgba(120, 215, 215, .3);
}

    .turquoise-button:hover {
        background-color: rgba(120, 215, 215, .7);
        text-decoration: none;
    }

/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
    .pic-section {
        flex-direction: column;
    }
    .mobile-reverse-pic-section {
        flex-direction: column-reverse;
    }
    .pic-section-img {
        width: 80vw;
    }
}