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

/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    --normal-font: 400;
    --primary-color: #2E0D0D;
    --secondary-color: #5A5A5A;
    --bgcolor: #fff;
    --cta-color: #AE6900;
    --line-height: 1.7rem;
    --main-width: 1112px;
    margin: 0 40px;
}

body.dark-theme {
    --primary-color: #E0E0E0;
    --secondary-color: #fff;
    --bgcolor: #000;
}

@media (prefers-color-scheme: dark) {
    body {
        --primary-color: #E0E0E0;
        --secondary-color: #fff;
        --bgcolor: #000;
    }
    body.light-theme {
        --primary-color: #2E0D0D;
        --secondary-color: #5A5A5A;
        --bgcolor: #fff;
    }
}

body {
    background: var(--bgcolor);
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: var(--main-width);
    margin: 1rem auto 3rem;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    nav {
        display: none;
    }
}

nav .nav-item {
    margin-left: 2rem;
}

nav .nav-link {

}

.wip {
    display: none;
}

@media only screen and (max-width: 768px) {
    .wip {
        display: block;
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 110px;
    max-width: var(--main-width);
    margin: 6rem auto;
}

@media only screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        max-width: 500px;
        margin: 3rem 12px;
        gap: 40px;
    }
}

.intro {
    flex: 1;
    /*padding-right: 90px;*/
    max-width: 450px;
}

@media only screen and (max-width: 768px) {
    .intro {
        flex: 0;
    }
}

.intro h1 {
    font-size: 2.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.intro h3 {
    font-size: 2rem;
    font-weight: normal;
    color: var(--secondary-color);
}

.intro .cta {
    margin-top: 9.5rem;
    text-align: center;
}

.intro .cta span {
    font-size: 1.0rem;
    color: var(--primary-color);
}

.email-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}
.email-form label {
    position: relative;
}
.email-form input[type="email"] {
    border: none;
    width: 447px;
    height: 49px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 16px;
}
.email-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cta-color);
    color: white;
    padding: 0 16px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 0 13px 13px 0;
}
.email-form button:hover{
    transition: .8s;
    background-color: #E28800;
}


img {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.ipad {
    max-width: 600px;
    margin-top: 14px;
    flex: 1;
}

.ipad .ipad-only {
    font-size: 0.8rem;
    line-height: 22px;
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 30px;
}

.ipad img {
    /*width: 552px;*/
    flex-grow: 1;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .ipad img {
        width: 100%;
    }
}

.ipad .draw-arrow-container-container {
    position: relative;
    height: 100px;
}

.ipad .draw-arrow-container {
    position: absolute;
    top: -100px;
    left: 90px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    opacity: 80%;
    padding-left: 250px;
    margin: 0 auto;
}

.ipad .draw-arrow {
    width: 45px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.ipad .draw-arrow-container span {
    line-height: 40px;
    color: var(--secondary-color);
}

section.about {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}