/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #383838;
    --bg-dark-tone: #383838;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-light: rgba(255, 255, 255, 0.9);
    --border-white: rgba(255, 255, 255, 0.2);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Alle Überschriften verwenden Cambon */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cambon', serif;
}

.bg-dark-tone {
    background-color: var(--bg-dark-tone);
    min-height: 100vh;
}

/* Container */
.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Navigation */
.navbar-wrapper {
    position: relative;
    z-index: 1000;
}

.navbar-wrapper.white {
    background-color: transparent;
}

.navbar {
    padding: 24px 0;
}

.navbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-logo-image {
    height: 40px;
    width: auto;
}

/* nav-menu-wrapper entfernt (nur Logo + Demo-Button) */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.dropdown-toggle.white {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
    font-family: 'Figtree', sans-serif;
}

.dropdown-toggle.white:hover {
    opacity: 0.7;
}

.button.inside-nav-menu.white,
.button.inside-right-navbar.white {
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.button.inside-nav-menu.white:hover,
.button.inside-right-navbar.white:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.navbar-right-contents {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-button {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.menu-button-horizontal-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    margin: 4px 0;
    transition: all 0.3s;
}

/* Hero Section */
.section-3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-video-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 120px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.image-14 { display: none; }

.hero-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title {
    font-family: 'Cambon', serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.sub-headline,
.heading-four.sub-headline {
    font-family: 'Figtree', sans-serif !important;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.button-7 {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--bg-dark-tone);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.button-7:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content Section */
.section.title {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.datenmassen {
    text-align: center;
    margin-bottom: 80px;
}

.heading-two.title-text {
    font-family: 'Cambon', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.grid-section {
    margin-top: 80px;
}

/* Tabs */
.tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-menu {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-white);
}

.tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.tab:hover {
    color: var(--text-white);
}

.tab.active {
    color: var(--text-white);
    border-bottom-color: var(--text-white);
}

.tab-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
}

/* Tabs: keine Pfeile anzeigen */
.tabs-menu .tab .tab-icon { display: none; }

.tabs-content {
    position: relative;
}

.w-tab-pane {
    display: none;
}

.w-tab-pane.active {
    display: block;
}

.tab-content {
    padding: 40px 0;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-content-image {
    width: 100%;
    height: auto;
    max-width: 650px;
}

.tab-content-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.heading-four {
    font-family: 'Cambon', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.tab-text {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bordered-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.bordered-icon img {
    width: 12px;
    height: 12px;
    opacity: 1;
    filter: invert(1) brightness(2);
}

.list-item > div:last-child {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Features Metrics */
.features-metrics {
    padding: 160px 0 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.bottom-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bottom-text {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.features-metrics img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-white);
    margin-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-email {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--text-white);
}

.footer-impressum-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-impressum-link:hover {
    color: var(--text-white);
}

.footer-right {
    display: flex;
    align-items: flex-start;
}

.social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
}

.social-link-icon {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-link:hover .social-link-icon {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-white);
}

.footer-copyright {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
}

.footer-legal {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Keine mobile Offcanvas-Navigation nötig: nur Logo + Button */
    .menu-button { display: none; }
    
    /* Button im Menü auf Mobile ausblenden */
    .navbar-right-contents {
        display: none;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .sub-headline {
        font-size: 22px;
    }
    
    .image-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-content-image {
        order: -1;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-legal {
        max-width: 100%;
    }
}

/* Impressum Page Styles */
.impressum-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.display-heading-2 {
    font-family: 'Cambon', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 40px;
}

.rich-text-block.impressum-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Figtree', sans-serif;
    line-height: 1.8;
}

.impressum-content p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 16px;
}

.impressum-content p:last-child {
    margin-bottom: 0;
}

.impressum-content strong {
    font-weight: 600;
    color: var(--text-white);
}

.impressum-content a {
    color: var(--text-white);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.impressum-content a:hover {
    opacity: 0.7;
}

.mohemian-link {
    color: var(--text-white);
}

@media (max-width: 640px) {
    .container-main {
        padding: 0 16px;
    }
    
    .nav-logo-image {
        height: 28px;
    }
    
    .hero-content {
        padding: 80px 16px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .heading-two.title-text {
        font-size: 32px;
    }
    
    .heading-four {
        font-size: 24px;
    }
    
    .display-heading-2 {
        font-size: 36px;
    }
    
    .impressum-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .tabs-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .tab {
        padding: 12px 0;
    }
    
    .section.title {
        padding: 60px 0;
    }
}
