@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: 'Roboto', sans-serif;
    --primary-color: #FF6000;
    --secondary-color: #e65901;
    --link-color: #FF6000;
    --link-hover-color: #e65901;
    --text-color: #000000;
    --footer-background-color: #000000;
    --footer-text-color: #ffffff;
    --btn-filled-bg: #ff6600;
    --btn-filled-hover-bg: #cc5200;
    --nav-bg-color: #ffffff;
    --signature-bg-color: #ff6000;
    --store-bg-color: #ff6000;
    --secret-bg-color: #ff6000;
    --coming-soon-filter: brightness(0) invert(0.75);
}

body,
* {
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
    font-size: clamp(1em, 1em, 1.2em);
}

h1 {
    font-size: clamp(1.5em, 5vw + 1em, 3.4571em);
    margin-bottom: 3rem;
    text-transform: uppercase;
    word-break: break-word;
    width: 100%;
}

h2 {
    font-size: clamp(1.25em, 4vw + 1em, 1.75em)
}

h3 {
    font-size: clamp(1em, 3vw + 1em, 1.25em);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

#logo {
    transition: filter 0.3s ease;
}

.btn {
    box-sizing: border-box;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

.btn-filled {
    background: var(--btn-filled-bg);
    color: #fff;
}

.btn-filled:hover {
    background: var(--btn-filled-hover-bg);
}

.btn img {
    filter: invert(1);
    width: 25px;
}

nav {
    position: fixed;
    width: 100%;
    background: var(--nav-bg-color);
    z-index: 100;
}

nav .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
}

nav .nav-container a .brand-logo {
    width: 150px;
}

nav .nav-container ul {
    list-style-type: none;
    flex-direction: row;
    gap: 1.5rem;
}

nav .nav-container ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
}

nav .nav-container ul li a:hover {
    text-decoration: underline;
}

main section {
    min-height: 100vh;
}

main .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 1140px;
    padding: 3rem 1.5rem;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: -1;
}

.hero-text {
    max-width: 500px;
    width: 100%;
    text-align: left;
}

.hero-text h1 {
    width: 100% !important;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.signature-section {
    background-color: var(--signature-bg-color);
    color: white;
}

.signature-container {
    max-width: 1140px;
    padding: 0 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding-top: 7.5rem;
}

.signature-container .products-container {
    margin-bottom: 3.5rem;
}

.signature-container .products-container .product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.signature-container .products-container .product .product-image {
    order: 1;
}

.signature-container .products-container .product .product-image img {
    width: 600px;
}

.signature-container .products-container .product .product-text {
    max-width: 500px;
    width: 100%;
    text-align: center;
    order: 2;
}

.signature-container .products-container .product .product-text img {
    width: 300px;
    filter: invert(1);
}

.store-container {
    max-width: 1140px;
    padding: 0 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding-top: 7.5rem;
}

.secret-section {
    background-color: var(--secret-bg-color);
    color: white;
}

.secret-container {
    position: relative;
    max-width: 1140px;
    padding: 0 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding-top: 7.5rem;
}

footer {
    padding: 2.5rem 0;
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    padding: 0 1.5rem;
    text-align: center;
    margin: 0 auto;
    align-items: center;
}

.footer-container ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    order: 2;
}

.footer-container ul li a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 13px;
}

.footer-container ul li a:hover {
    text-decoration: underline;
}

.brand-footer {
    filter: invert(1);
    width: 300px;
    order: 1;
}

.footer-container .copyright {
    font-size: 13px;
    margin-top: 1rem;
    order: 3;
}

nav.orange {
    background-color: var(--primary-color);
    color: var(--footer-text-color);
}

nav.orange .nav-links.active {
    background-color: var(--primary-color);
}

nav.orange ul li a {
    color: var(--footer-text-color);
}

nav.orange ul li a:hover {
    text-decoration: underline;
}

#logo.white {
    filter: brightness(0) invert(1);
}

.coming-soon {
    filter: var(--coming-soon-filter);
}

.secrets-container {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.secret {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 300px;
    margin: 10px;
}

.secret-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: cover;
}

.secret-text {
    margin-top: 10px;
}

.jobs-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jobs-section .jobs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 1140px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.jobs-section .jobs-container .jobs-text {
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.jobs-section .jobs-container .jobs-text p {
    margin-bottom: 1rem;
}

.jobs-section .jobs-container .jobs-image {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: -1;
}

.imprint-section,
.policy-section,
.cookies-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.policy-section,
.cookies-section {
    padding-top: 10rem;
}

.imprint-container,
.policy-container,
.cookies-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 1140px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.imprint-body,
.policy-body,
.cookies-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-body,
.cookies-body {
    padding-bottom: 3.5rem;
}

.policy-body ul,
.cookies-body ul {
    margin-left: 2rem;
}

/* Hamburger Icon */
.hamburger-menu {
    display: flex;
    /* Standardmäßig ausgeblendet */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}

.hamburger-menu span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
}

.nav-links {
    display: none;
    list-style-type: none;
    flex-direction: row;
    gap: 1.5rem;
}

.nav-links.active {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--nav-bg-color);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
}

.nav-links li a:hover {
    text-decoration: underline;
}

.burger-white {
    background-color: var(--nav-bg-color) !important;
}

.constructionsite {
    background-color: var(--primary-color);
}

.constructionsite .construction-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: var(--primary-color);
    height: 100vh;
    align-items: center;
    flex-direction: column;
}

.constructionsite .construction-container .brand {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.constructionsite .construction-container .coming-soon {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(0.9);
}

.constructionsite footer {
    padding: 1.5rem 0;
    background-color: transparent;
    color: var(--footer-text-color);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.constructionsite .footer-container {
    display: flex;
    flex-direction: column;
    max-width: 1140px;
    width: 100%;
    padding: 0 0.5rem;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    box-sizing: border-box;
}

.constructionsite .footer-container ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    order: 1;
}

.constructionsite .footer-container ul li a {
    color: var(--footer-text-color);
    text-decoration: none;
    font-size: 13px;
}

.constructionsite .footer-container ul li a:hover {
    text-decoration: underline;
}

.constructionsite .footer-container .copyright {
    font-size: 13px;
    margin-top: 1rem;
    order: 2;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-image {
        flex: 1;
        order: 2;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        width: 140% !important;
    }

    .signature-container .products-container .product {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 0 3.5rem;
    }

    .signature-container .products-container .product .product-image {
        order: 2;
    }

    .signature-container .products-container .product .product-text {
        max-width: 500px;
        width: 100%;
        text-align: left;
        order: 1;
    }

    .secrets-container {
        display: flex;
        gap: 1.5rem;
    }

    .secret {
        flex: 0 0 33%;
    }

    .jobs-section .jobs-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .jobs-section .jobs-container .jobs-image {
        flex: 1;
        order: 2;
    }

    .jobs-section .jobs-container .jobs-text {
        flex: 1;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-container ul {
        order: 3;
    }

    .brand-footer {
        order: 2;
    }

    .footer-container .copyright {
        order: 1;
    }

    .nav-links {
        display: flex;
        /* Verstecke das Navigationsmenü auf mobilen Geräten */
    }

    .nav-links.active {
        display: flex;
        /* Zeige das Menü, wenn 'active' hinzugefügt wird */
    }

    .hamburger-menu {
        display: none;
        /* Zeige das Hamburger-Menü auf mobilen Geräten */
    }

     .constructionsite .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .constructionsite .footer-container ul {
        order: 2;
    }

    .constructionsite .footer-container .copyright {
        order: 1;
    }
}