/* ============================================================
   CSS VARIABLEN
   ============================================================ */

   :root {
    --sonnenuntergangsgelb: #FFB03D;
    --sandgelb:             #F7D288;
    --velocity-blau:        #46688F;
    --nachtblau:            #052142;
    --lightgrau:            #E5E9E3;
    --weiss:                #ffffff;
    --schwarz:              #000000;
}


/* ============================================================
   FONTS
   ============================================================ */

@font-face {
    font-family: 'FugazOne';
    src: url('fonts/FugazOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UbuntuMono';
    src: url('fonts/UbuntuMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UbuntuMono';
    src: url('fonts/UbuntuMono-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'UbuntuMono';
    src: url('fonts/UbuntuMono-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'UbuntuMono';
    src: url('fonts/UbuntuMono-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}


/* ============================================================
   BASE
   ============================================================ */

body {
    margin: 0;
    background-color: var(--weiss);
}

main {
    display: block;
    margin: 0;
    padding: 0;
}


/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--weiss);
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.nav-desktop ul li a {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.005em;
    color: var(--nachtblau);
    text-decoration: none;
}

.nav-desktop ul li a:hover {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn .close-icon {
    display: none;
}

.hamburger-btn[aria-expanded="true"] .hamburger-icon {
    display: none;
}

.hamburger-btn[aria-expanded="true"] .close-icon {
    display: block;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: auto;
    background-color: var(--weiss);
    z-index: 99;
    padding: 40px 24px;
}

.mobile-overlay.is-open {
    display: block;
}

.nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-mobile ul li a {
    display: block;
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.005em;
    color: var(--nachtblau);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--lightgrau);
}

.nav-mobile ul li a:hover {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body.overlay-open {
    overflow: hidden;
}

@media (min-width: 700px) {
    .hamburger-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }
}


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

.site-footer {
    position: relative;
    background-image: url('gfx/footer_bg_mobile.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'UbuntuMono', monospace;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 28px 48px;
    gap: 32px;
}

.footer-tagline {
    color: var(--lightgrau);
    font-family: 'UbuntuMono', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.35;
    margin: 0;
}

.footer-heading {
    color: var(--lightgrau);
    font-family: 'UbuntuMono', monospace;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 16px;
}

.footer-text {
    color: var(--lightgrau);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px;
}

.footer-link {
    display: block;
    color: var(--lightgrau);
    font-size: 0.9rem;
    text-decoration: underline;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--sonnenuntergangsgelb);
}

@media (min-width: 700px) {
    .site-footer {
        background-image: url('gfx/footer_bg_desktop.svg');
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 48px 60px;
        gap: 40px;
    }

    .footer-section {
        flex: 1;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }
}


/* ============================================================
   CAROUSEL
   ============================================================ */

.carousel {
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    animation: carousel-scroll 14s linear infinite;
}

.carousel-slide {
    width: 350px;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes carousel-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-1750px); }
}


/* ============================================================
   TYPOGRAPHY CLASSES
   ============================================================ */

.vc-header-font {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.005em;
}

.vc-header-font-bold {
    font-family: 'UbuntuMono', monospace;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vc-footer-font {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.vc-headline-01 {
    font-family: 'FugazOne', sans-serif;
    font-weight: normal;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.vc-headline-02 {
    font-family: 'FugazOne', sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.vc-headline-03 {
    font-family: 'UbuntuMono', monospace;
    font-weight: bold;
    font-size: 24px;
}

.vc-cards-text {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.005em;
}

.vc-fliesstext {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
}

.vc-eyebrow {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4;
}

.vc-cta-text {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.vc-cta-button {
    font-family: 'UbuntuMono', monospace;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.vc-statement {
    font-family: 'FugazOne', sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.1;
}

.mobile-break::after {
    content: '\A';
    white-space: pre;
}

@media (min-width: 700px) {
    .mobile-break::after {
        content: '';
    }
}