@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,500;0,6..72,800;1,6..72,500&display=swap');

@font-face {
    font-family: 'General Sans';
    src: url('../assets/fonts/GeneralSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* =========================
   RESET
========================= */

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

body {
    background: #F4F0E8;
    color: #171717;
    font-family: 'General Sans', sans-serif;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.header {
    height: 90px;
    padding: 0 5vw;

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

.logo {
    font-family: 'Newsreader', serif;
    font-size: 24px;
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 14px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 90px);

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-content {
    padding: 8vw 5vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    max-width: 650px;

    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: clamp(50px, 5vw, 90px);
    line-height: 0.95;
}

.hero h1 em {
    font-style: italic;
}

.hero p {
    max-width: 500px;
    margin-top: 40px;

    font-size: 17px;
    line-height: 1.6;
}

.hero-button {
    width: fit-content;

    margin-top: 40px;
    padding: 16px 22px;

    background: #C8FF00;

    font-size: 14px;
    font-weight: 600;
}

.hero-button span {
    margin-left: 25px;
}

.hero-image {
    min-height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* =========================
   CONTACT
========================= */

.contact {
    background: #E8E2D8;
    min-height: 60vh;
    padding: 7vw 5vw;

    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 5vw;
}

.contact-label {
    margin: 8px 0 0;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.contact-content {
    grid-column: 2;
    max-width: 850px;
}

.contact h2 {
    max-width: 850px;
    font-family: 'Newsreader', serif;
    font-size: clamp(52px, 5.5vw, 90px);
    font-weight: 500;
    line-height: 0.95;
}

.contact-text {
    max-width: 500px;
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.5;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 30px;

    margin-top: 40px;
    padding-bottom: 8px;

    border-bottom: 1px solid #171717;

    font-size: 20px;
}

.contact-email span {
    font-size: 24px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #171717;
    color: #F4F0E8;
    padding: 50px 5vw;

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

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.footer-logo {
    font-family: 'Newsreader', serif;
    font-size: 28px;
    font-weight: 800;
}

.footer-separator {
    margin: 0 8px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 13px;
}

.footer-right a {
    text-decoration: none;
}

/* =========================
   RESPONSIVE — MOBILE
========================= */

@media (max-width: 768px) {

    .header {
        height: 72px;
        padding: 0 6vw;
    }

    .logo {
        font-size: 21px;
    }

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 15vw 6vw 12vw;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(42px, 11vw, 60px);
        line-height: 0.94;
    }

    .hero p {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-button {
        margin-top: 28px;
        padding: 15px 20px;
        font-size: 13px;
    }

    .hero-button span {
        margin-left: 22px;
    }

    .hero-image {
        height: 100vw;
        min-height: 380px;
        max-height: 600px;
    }

    .contact {
        display: block;
        min-height: auto;
        padding: 18vw 6vw;
    }

    .contact-label {
        margin-bottom: 35px;
        font-size: 12px;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact h2 {
        font-size: clamp(48px, 13vw, 70px);
    }

    .contact-text {
        margin-top: 30px;
        font-size: 15px;
    }

    .contact-email {
        margin-top: 35px;
        gap: 20px;
        font-size: 16px;
    }

    .footer {
        padding: 40px 6vw;
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-copyright {
        grid-column: 1 / -1;
    }
}