@import url('https://fonts.googleapis.com/css2?family=Parisienne&family=Domine:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --akzent: #a5814b;
    --akzenthover: #bb9152;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: black;
}

/* NAV */

nav {
    position: fixed;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    z-index: 9998;
    width: 100%;
}

.nav-inner {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav.scrolled {
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav.scrolled .nav-btn {
    color: black !important;
}

.nav-logo img {
    height: 80px;
    width: auto;
}

.nav-btn,
.nav-close {
    color: white;
    cursor: pointer;
    transform: scale(1);
    transition: all 250ms ease-in-out;
    font-size: 24px !important;
    color: white !important;
}

.nav-btn:hover {
    transform: scale(1.1);
    transition: all 250ms ease-in-out;
}

/* NAV DRAWER */

.nav-drawer {
    position: fixed;
    height: 100vh;
    width: 100%;
    display: block;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    pointer-events: none;
    transition: all 250ms ease-in-out;
}

.nav-drawer.open {
    opacity: 1;
    pointer-events: initial;
    transition: all 250ms ease-in-out;
}

.nav-drawer_inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: end;
}

.nav-drawer_content {
    position: relative;
    min-width: 360px;
    background-color: var(--akzent);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(360px, 0);
    transition: all 250ms ease-in-out;
}

.nav-drawer_content.visible {
    transform: translate(0, 0);
    transition: all 250ms ease-in-out;
}

.nav-close {
    position: absolute;
    top: 8px;
    left: 8px;
}

.nav-drawer_logo {
    width: 120px;
    height: auto;
}

.nav-drawer_socials {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.nav-drawer_socials a {
    margin: 0 8px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 150ms ease-in-out;
}

.nav-drawer_socials a:hover {
    color: rgba(255, 255, 255, 1);
    transition: all 150ms ease-in-out;
}

.nav-drawer_links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-drawer_links a {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 150ms ease-in-out;
}

.nav-drawer_links a.active,
.nav-drawer_links a:hover {
    color: rgba(255, 255, 255, 1);
    transition: all 150ms ease-in-out;
}

/* FOOTER */

.footer-inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0;
}

.footer-seperator {
    height: 1px;
    width: 100%;
    display: block;
    background-color: white;
    margin: 32px 0;
}

.footer-title {
    font-family: "Domine", serif;
    font-size: 32px;
}

footer p {
    color: white;
    text-align: center;
}

.footer-social {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.footer-social a {
    margin: 0 16px;
    color: white;
    transition: all 150ms ease-in-out;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--akzent);
    transition: all 150ms ease-in-out;
}

.footer-social i {
    font-size: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: white;
    margin: 0 8px;
    transition: all 150ms ease-in-out;
}

.footer-links a:hover {
    color: var(--akzent);
    transition: all 150ms ease-in-out;
}

/* HERO */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
}

.hero.small {
    height: 320px;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: white;
    font-family: "Domine", serif;
    font-size: 64px;
    margin-bottom: 16px;
    text-align: center;
}

.hero-content p {
    color: white;
    margin-bottom: 16px;
    text-align: center;
}

.hero-btn {
    background-color: var(--akzent);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 24px;
    transition: all 250ms ease-in-out;
}

.hero-btn:hover {
    background-color: var(--akzenthover);
    transition: all 250ms ease-in-out;
}

/* ERSTE SEKTION */

.first {
    padding: 64px 0;
    background-color: white;
}

.first-inner {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first img {
    display: block;
    height: 360px;
    width: 360px;
    object-fit: cover;
    object-position: center;
}

.first-content {
    margin-left: 64px;
}

.first-header {
    font-weight: 800;
    font-size: 32px;
    margin: 16px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 32px;
}

.first-text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
}

.first-signature {
    font-family: "Parisienne", cursive;
    font-size: 28px;
    margin-top: 16px;
    font-weight: 600;
}

/* LIEFERUNG */

.lieferung {
    display: flex;
}

.lieferung-image {
    width: 50%;
    display: block;
}

.lieferung-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.lieferung-content {
    width: 50%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 64px;
}

.lieferung-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 32px;
    color: white;
}

.lieferung-text {
    color: white;
    margin-bottom: 24px;
    width: 70%;
    line-height: 32px;
}

.lieferung-button {
    background-color: var(--akzent);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 24px;
    transition: all 250ms ease-in-out;
    width: fit-content;
    display: block;
}

.lieferung-button:hover {
    background-color: var(--akzenthover);
    transition: all 250ms ease-in-out;
}

.lieferung.light,
.lieferung.light .lieferung-content {
    background-color: white;
}

.lieferung.light .lieferung-title,
.lieferung.light .lieferung-text {
    color: black;
}

/* GALERIE */

.galerie {
    padding: 32px 0;
}

.section-header {
    font-size: 32px;
    font-family: "Domine", serif;
    color: white;
    text-align: center;
    margin-bottom: 32px;
}

.galerie-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.galerie-img {
    width: calc(100% / 3 - 10px);
    overflow: hidden;
    margin: 5px;
}

.galerie-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 800px) {
    .first {
        padding: 32px 0;
    }

    .first-inner {
        flex-direction: column-reverse;
    }

    .first-content {
        width: 90%;
        margin: 0 auto 16px;
    }

    .first-text,
    .first-header,
    .first-signature,
    .lieferung-title,
    .lieferung-text {
        text-align: center;
    }

    .lieferung {
        flex-direction: column;
    }

    .lieferung.light {
        flex-direction: column-reverse;
    }

    .lieferung-content {
        width: 95%;
        margin: 0 auto;
        padding: 32px 0;
    }

    .lieferung-text {
        width: 100%;
    }

    .lieferung-button {
        margin: 0 auto;
    }

    .lieferung-image {
        width: 100%;
    }

    .galerie-inner {
        justify-content: space-between;
        padding: 0 8px;
    }

    .galerie-img {
        width: calc(100% / 2 - 4px);
        margin: 0;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 400px) {
    .nav-inner {
        width: 95%;
        padding: 8px 0;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-drawer_content {
        min-width: 280px;
    }

    .nav-btn,
    .nav-close {
        font-size: 24px !important;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .galerie-inner {
        padding: 8px;
    }

    .galerie-img {
        width: 100%;
        margin: 0;
        margin-bottom: 8px;
    }

    .galerie-img:last-of-type {
        margin-bottom: 0;
    }

    .footer-inner {
        padding: 32px 0;
    }

    .footer-links {
        flex-direction: column;
    }
}