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

:root {
    --primary-color: #03a9f4;
    --primary-dark: #1e7aa8;
    --secondary-color: #6c757d;
    --accent-color: #495057;
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #6c757d;
    --bg-primary: #ededed;
    --bg-secondary: #ededed;
    --border-color: #dee2e6;
    --border-light: #f1f3f4;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background-color: #ededed;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 9999;
    transition: all 0.3s ease;
    height: 120px;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.nav-logo img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin-left: 0;
    transform: translateX(-400px); /* 100px nach links verschoben (-300px - 100px = -400px) */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400; /* Geändert von 600 auf 400 */
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.3rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-secondary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hexagon Grid Styles */
.hexagon-wrapper {
    background-color: #ededed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 190px; /* Abstand zur Navigation + 70px nach unten */
    min-height: calc(100vh - 120px); /* Volle Höhe minus Navigation */
}

.hexagon-wrapper__hexagon-container {
    width: 72vw;
    display: flex;
    flex-wrap: wrap;
    transform: skew(0deg, 0deg);
}

.hexagon__outer {
    margin-top: -5.2vw;
    transition: all 0s;
    -webkit-clip-path: polygon(
        0 25%,
        50% 0,
        100% 25%,
        100% 75%,
        50% 100%,
        0 75%
    );
    clip-path: polygon(
        0 25%,
        50% 0,
        100% 25%,
        100% 75%,
        50% 100%,
        0 75%
    );
    width: 18vw;
    height: 20.78vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon__outer:hover {
    transform: scale(1.02) rotate(0deg);
}

.hexagon__outer:nth-child(-n + 4) {
    margin-top: 0;
}

.hexagon__outer:nth-child(7n + 5) {
    margin-left: 9vw;
}

.hexagon__inner {
    background-color: #c9c9c9;
    color: #969696;
    -webkit-clip-path: polygon(
        0 25%,
        50% 0,
        100% 25%,
        100% 75%,
        50% 100%,
        0 75%
    );
    clip-path: polygon(
        0 25%,
        50% 0,
        100% 25%,
        100% 75%,
        50% 100%,
        0 75%
    );
    width: 98%;
    height: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Erich's Bild für das erste Hexagon - Direktes img Element */
.hexagon__outer:first-child .hexagon__inner {
    background-color: #4B0082; /* Violetter Hintergrund als Rahmen */
    color: transparent; /* Text ausblenden */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Wichtig: Verhindert Überlauf */
}

.hexagon__outer:first-child .hexagon__inner .hexagon-image {
    width: calc(100% - 6px); /* 100% minus Rahmen */
    height: calc(100% - 6px); /* 100% minus Rahmen */
    object-fit: cover;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10; /* Höherer z-index */
}

/* Hover-Effekt für bessere Sichtbarkeit */
.hexagon__outer:first-child:hover .hexagon__inner .hexagon-image {
    transform: scale(1.05);
}

/* Zweites Hexagon vollflächig einfärben */
.hexagon__outer:nth-child(2) .hexagon__inner {
    background-color: #4B0082; /* Dunkelviolett */
    color: white; /* Weißer Text für bessere Lesbarkeit */
    text-align: center;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Drittes Hexagon mit Maras Bild - Direktes img Element */
.hexagon__outer:nth-child(3) .hexagon__inner {
    background-color: #FF8C00; /* Oranger Hintergrund als Rahmen */
    color: transparent; /* Text ausblenden */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hexagon__outer:nth-child(3) .hexagon__inner .hexagon-image {
    width: calc(100% - 6px); /* 100% minus Rahmen */
    height: calc(100% - 6px); /* 100% minus Rahmen */
    object-fit: cover;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

/* Hover-Effekt für Maras Bild */
.hexagon__outer:nth-child(3):hover .hexagon__inner .hexagon-image {
    transform: scale(1.05);
}

/* Viertes Hexagon mit Text - gleiches Format wie Hexagon 2 */
.hexagon__outer:nth-child(4) .hexagon__inner {
    background-color: #FF8C00; /* Orange wie Maras Rahmen */
    color: white; /* Weißer Text für bessere Lesbarkeit */
    text-align: center;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Fünftes Hexagon mit Text - blauer Hintergrund */
.hexagon__outer:nth-child(5) .hexagon__inner {
    background-color: #0066CC; /* Blauer Hintergrund */
    color: white; /* Weißer Text für bessere Lesbarkeit */
    text-align: center;
    padding: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Sechstes Hexagon mit Adams Bild - Direktes img Element */
.hexagon__outer:nth-child(6) .hexagon__inner {
    background-color: #0066CC; /* Blauer Hintergrund als Rahmen */
    color: transparent; /* Text ausblenden */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hexagon__outer:nth-child(6) .hexagon__inner .hexagon-image {
    width: calc(100% - 6px); /* 100% minus Rahmen */
    height: calc(100% - 6px); /* 100% minus Rahmen */
    object-fit: cover;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

/* Hover-Effekt für Adams Bild */
.hexagon__outer:nth-child(6):hover .hexagon__inner .hexagon-image {
    transform: scale(1.05);
}

/* Siebtes Hexagon mit Kontaktinformationen - Doppel-Hexagon-Technik */
.hexagon__outer:nth-child(7) .hexagon__inner {
    background-color: #666666; /* Dunkelgrauer Hintergrund als Rahmen */
    color: #333333; /* Dunkelgrauer Text */
    position: relative;
    z-index: 1; /* Text über den Rahmen stellen */
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* E-Mail-Link als Button stylen */
.hexagon__outer:nth-child(7) .hexagon__inner a {
    color: #333333 !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hexagon__outer:nth-child(7) .hexagon__inner a:hover {
    color: #0066CC !important;
    text-decoration: underline !important;
}

.hexagon__outer:nth-child(7) .hexagon__inner::before {
    content: '';
    position: absolute;
    top: 3px;  /* Rahmen-Breite wie bei den anderen */
    left: 3px;  /* Rahmen-Breite wie bei den anderen */
    right: 3px;  /* Rahmen-Breite wie bei den anderen */
    bottom: 3px;  /* Rahmen-Breite wie bei den anderen */
    background-color: white; /* Weißer Hintergrund */
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1; /* Hintergrund hinter den Text stellen */
}

@media (max-width: 900px) {
    .hexagon-wrapper__hexagon-container {
        width: 54vw;
    }

    /* Responsive Textgrößen für Hexagon 2 (Erich) */
    .hexagon__outer:nth-child(2) .hexagon__inner {
        font-size: 0.5rem;
        padding: 0.3rem;
        line-height: 1.0;
    }

    .hexagon__outer:nth-child(2) .hexagon__inner div:nth-child(2) {
        font-size: 1.2vw !important;
        margin-top: 0.6rem !important;
    }

    .hexagon__outer:nth-child(2) .hexagon__inner div:nth-child(3) {
        font-size: 0.8vw !important;
        margin-top: 0.1rem !important;
    }

    /* Responsive Textgrößen für Hexagon 4 (Mara) */
    .hexagon__outer:nth-child(4) .hexagon__inner {
        font-size: 0.5rem;
        padding: 0.3rem;
        line-height: 1.0;
    }

    .hexagon__outer:nth-child(4) .hexagon__inner div:nth-child(2) {
        font-size: 1.2vw !important;
        margin-top: 0.6rem !important;
    }

    .hexagon__outer:nth-child(4) .hexagon__inner div:nth-child(3) {
        font-size: 0.8vw !important;
        margin-top: 0.1rem !important;
    }

    /* Responsive Textgrößen für Hexagon 5 (Adam) */
    .hexagon__outer:nth-child(5) .hexagon__inner {
        font-size: 0.5rem;
        padding: 0.3rem;
        line-height: 1.0;
    }

    .hexagon__outer:nth-child(5) .hexagon__inner div:nth-child(2) {
        font-size: 1.2vw !important;
        margin-top: 0.6rem !important;
    }

    .hexagon__outer:nth-child(5) .hexagon__inner div:nth-child(3) {
        font-size: 0.8vw !important;
        margin-top: 0.1rem !important;
    }

    /* Responsive Textgrößen für Hexagon 7 (Kontakt) */
    .hexagon__outer:nth-child(7) .hexagon__inner {
        font-size: 0.5rem;
        padding: 0.3rem;
        line-height: 1.0;
    }

    .hexagon__outer:nth-child(7) .hexagon__inner div:first-child {
        font-size: 1.2vw !important;
    }

    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(2),
    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(3),
    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(4) {
        font-size: 0.7vw !important;
        margin-top: 0.15rem !important;
    }

    .hexagon__outer:nth-child(7) .hexagon__inner button {
        font-size: 0.8vw !important;
        padding: 0.4rem 0.8rem !important;
        margin-top: 0.6rem !important;
    }

    /* reset */
    .hexagon__outer:nth-child(-n + 4) {
        margin-top: -5.2vw;
    }

    /* reset */
    .hexagon__outer:nth-child(7n + 5) {
        margin-left: 0;
    }

    .hexagon__outer:nth-child(-n + 3) {
        margin-top: 0;
    }

    .hexagon__outer:nth-child(5n + 4) {
        margin-left: 9vw;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 50%;
    }
        
    .hexagon-wrapper__hexagon-container {
        width: 36vw;
    }

    /* Responsive Textgrößen für alle Text-Hexagons */
    .hexagon__outer:nth-child(2) .hexagon__inner,
    .hexagon__outer:nth-child(4) .hexagon__inner,
    .hexagon__outer:nth-child(5) .hexagon__inner,
    .hexagon__outer:nth-child(7) .hexagon__inner {
        font-size: 0.5rem;
        padding: 0.3rem;
        line-height: 1.0;
    }

    /* Namen und Positionen anpassen */
    .hexagon__outer:nth-child(2) .hexagon__inner div:nth-child(2),
    .hexagon__outer:nth-child(4) .hexagon__inner div:nth-child(2),
    .hexagon__outer:nth-child(5) .hexagon__inner div:nth-child(2) {
        font-size: 1.5vw !important;
        margin-top: 0.8rem !important;
    }

    .hexagon__outer:nth-child(2) .hexagon__inner div:nth-child(3),
    .hexagon__outer:nth-child(4) .hexagon__inner div:nth-child(3),
    .hexagon__outer:nth-child(5) .hexagon__inner div:nth-child(3) {
        font-size: 1vw !important;
        margin-top: 0.1rem !important;
    }

    /* Kontakt-Hexagon anpassen */
    .hexagon__outer:nth-child(7) .hexagon__inner div:first-child {
        font-size: 1.5vw !important;
    }

    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(2),
    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(3),
    .hexagon__outer:nth-child(7) .hexagon__inner div:nth-child(4) {
        font-size: 0.8vw !important;
        margin-top: 0.15rem !important;
    }

    .hexagon__outer:nth-child(7) .hexagon__inner button {
        font-size: 1vw !important;
        padding: 0.5rem 1rem !important;
        margin-top: 0.8rem !important;
    }

    /* reset */
    .hexagon__outer:nth-child(-n + 3) {
        margin-top: -5.2vw;
    }

    /* reset */
    .hexagon__outer:nth-child(5n + 4) {
        margin-left: 0;
    }

    .hexagon__outer:nth-child(-n + 2) {
        margin-top: 0;
    }

    .hexagon__outer:nth-child(3n + 3) {
        margin-left: 9vw;
    }
}

@media (max-width: 400px) {
    /* Hexagons nur auf sehr kleinen mobilen Geräten ausblenden */
    .hexagon-wrapper {
        display: none !important;
    }

    /* Mobile Kontaktansicht anzeigen */
    .mobile-contact-section {
        display: block !important;
        padding: 2rem 1rem;
        text-align: center;
        background-color: #ededed;
        min-height: 100vh;
        position: relative;
    }

    /* Alle alten mobile-contact Elemente komplett ausblenden */
    .mobile-contact-section .container,
    .mobile-contact-section .mobile-contact-content,
    .mobile-contact-section .mobile-contact-grid,
    .mobile-contact-section .mobile-contact-item {
        display: none !important;
    }

    .mobile-contact-content h2 {
        display: none !important;
    }

    .mobile-contact-grid {
        display: none !important;
    }

    .mobile-contact-content {
        display: none !important;
    }

    /* Neue mobile Kontaktansicht */
    .mobile-contact-section::before {
        content: '';
        display: block;
        height: 80px; /* Platz für den Header */
    }

    /* Mobile Kontaktansicht für kleine Bildschirme */
    .mobile-contact-simple {
        display: block !important;
        padding: 2rem 1rem;
        text-align: center;
        background-color: #ededed;
        min-height: 100vh;
    }

    .mobile-contact-simple__content {
        max-width: 400px;
        margin: 0 auto;
        padding-top: 2rem;
    }

    .mobile-contact-simple__domain {
        font-family: 'Roboto', sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: #333333;
        margin-bottom: 1.5rem;
    }

    .mobile-contact-simple__address,
    .mobile-contact-simple__street,
    .mobile-contact-simple__phone {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        color: #333333;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .mobile-contact-simple__email {
        margin-top: 1.5rem;
    }

    .mobile-contact-simple__email a {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        color: #333333;
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid #333333;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .mobile-contact-simple__email a:hover {
        background-color: #333333;
        color: white;
    }

    /* reset */
    .hexagon__outer:nth-child(-n + 2) {
        margin-top: -5.2vw;
    }

    /* reset */
    .hexagon__outer:nth-child(3n + 3) {
        margin-left: 0;
    }

    .hexagon__outer:nth-child(n + 0) {
        margin-top: 0;
    }

    .hexagon__outer:nth-child(0n + 0) {
        margin-left: 9vw;
    }
}

















/* Echtes Hexagon-Grid mit Bienenwabenstruktur */
.honeycomb-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    position: relative;
}

/* Einzelne Wabe - Exakte Geometrie für Bienenwabenstruktur (30% kleiner) */
.hexagon {
    width: 420px; /* 600px - 30% = 420px */
    height: 363.7px; /* 519.6px - 30% = 363.7px */
    background: transparent;
    border: none;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* 2rem - 30% = 1.4rem */
    font-weight: bold;
    color: #333;
    position: absolute;
    cursor: pointer;
}

/* Exakte Positionierung für echtes Hexagon-Grid (30% kleiner, 50px nach unten) */
/* Erste Reihe (oben) - nur 4 Waben, ohne Überlappung */
.hex-1 { top: calc(30% + 50px); left: 20%; transform: translate(-50%, -50%); }
.hex-2 { top: calc(30% + 50px); left: calc(20% + 450px); transform: translate(-50%, -50%); }
.hex-3 { top: calc(30% + 50px); left: calc(20% + 900px); transform: translate(-50%, -50%); }
.hex-4 { top: calc(30% + 50px); left: calc(20% + 1350px); transform: translate(-50%, -50%); }

/* Dauerhaft sichtbare Waben */
.hexagon {
    background: rgba(51, 51, 51, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Markierung aller 6 Ecken der Wabe 1 */
.hex-1::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

/* Ecke 2 (oben rechts) - Grün */
.hex-1 .corner-2 {
    position: absolute;
    top: 25%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: green;
    border-radius: 50%;
    z-index: 100;
}

/* Ecke 3 (unten rechts) - Gelb */
.hex-1 .corner-3 {
    position: absolute;
    bottom: 25%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: yellow;
    border-radius: 50%;
    z-index: 100;
}

/* Ecke 4 (unten) - Orange */
.hex-1 .corner-4 {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: orange;
    border-radius: 50%;
    z-index: 100;
}

/* Ecke 5 (unten links) - Lila */
.hex-1 .corner-5 {
    position: absolute;
    bottom: 25%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: purple;
    border-radius: 50%;
    z-index: 100;
}

/* Ecke 6 (oben links) - Blau */
.hex-1 .corner-6 {
    position: absolute;
    top: 25%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    z-index: 100;
}

/* Markierung der Ecke oben links für Wabe 2 */
.hex-2::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    z-index: 100;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hexagon {
        width: 500px;
        height: 433px;
        font-size: 1.8rem;
    }
    
    .hexagon:nth-child(5),
    .hexagon:nth-child(6),
    .hexagon:nth-child(7),
    .hexagon:nth-child(8) {
        transform: translateX(250px);
    }
}

@media (max-width: 1000px) {
    .hexagon {
        width: 400px;
        height: 346px;
        font-size: 1.5rem;
    }
    
    .hexagon:nth-child(5),
    .hexagon:nth-child(6),
    .hexagon:nth-child(7),
    .hexagon:nth-child(8) {
        transform: translateX(200px);
    }
}

@media (max-width: 768px) {
    .honeycomb-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .hexagon {
        width: 300px;
        height: 260px;
        font-size: 1.2rem;
    }
    
    .hexagon:nth-child(5),
    .hexagon:nth-child(6),
    .hexagon:nth-child(7),
    .hexagon:nth-child(8) {
        transform: translateX(150px);
    }
}

@media (max-width: 480px) {
    .honeycomb-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 0.5rem;
    }
    
    .hexagon {
        width: 200px;
        height: 173px;
        font-size: 1rem;
    }
    
    .hexagon:nth-child(5),
    .hexagon:nth-child(6),
    .hexagon:nth-child(7),
    .hexagon:nth-child(8) {
        transform: translateX(100px);
    }
}













/* Mobile Contact Section */
.mobile-contact-section {
    display: none; /* Standardmäßig versteckt */
    padding: 3rem 0;
    background: #ededed;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

/* Mobile Kontaktansicht standardmäßig verstecken */
.mobile-contact-simple {
    display: none;
}

.mobile-contact-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-contact-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
    pointer-events: none;
}

.mobile-contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 0 20px rgba(255,255,255,0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-contact-item i {
    font-size: 2rem;
    color: white;
    width: 50px;
    text-align: center;
    opacity: 0.9;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-value:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Section - 2-ZEILIG */
.footer-section {
    padding: 10px 0 100px; /* Weitere 20px nach oben gerückt (30px - 20px = 10px) */
    background: #ededed;
    margin: 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-line-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: white;
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.footer-line-2 .separator {
    color: #6c757d;
    font-weight: 900;
    font-size: 2rem;
    opacity: 1;
}

.footer-line-2 .address,
.footer-line-2 .phone {
    font-weight: 500;
    font-size: 2.5rem;
    color: #2c3e50;
}

.footer-line-2 .email {
    color: #2c3e50;
    font-weight: 600;
    font-size: 2.5rem;
}

.footer-line-2 .email a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 2.5rem;
}

.footer-line-2 .email a:hover {
    color: #764ba2;
    text-decoration: underline;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ededed;
    color: #2c3e50;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: white;
    border-color: #667eea;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.back-to-top.show {
    display: flex;
}





/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .team-card {
        flex: 0 0 50%;
    }
    
    .team-slider {
        width: 1740px; /* 2 cards * 870px */
    }
    
    @keyframes autoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-870px); /* Scrolls 1 card width */
        }
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .navbar {
        height: 80px;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    /* Hamburger Menu anzeigen */
    .hamburger {
        display: flex;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        height: 100vh;
        gap: 0;
        transform: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 2rem 0;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }
    
    /* Mobile: Slider komplett ausblenden und statische Darstellung */
    .team-slider-section {
        padding: 120px 0 60px;
    }
    
    .team-slider {
        display: none !important; /* Slider komplett ausblenden */
    }
    
    /* Mobile Contact Section anzeigen */
    .mobile-contact-section {
        display: block;
    }
    
    /* Mobile Footer ausblenden - Kontaktbereich ist bereits in mobile-contact-section */
    .footer-line-2 {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
    
    .nav-menu a {
        font-size: 1.3rem;
        padding: 0.8rem 0;
    }
    
    .team-slider-section {
        padding: 100px 0 50px;
    }
    
    /* Footer auch hier ausblenden */
    .footer-line-2 {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-menu {
        padding-top: 60px;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.7rem 0;
    }
    
    .team-slider-section {
        padding: 80px 0 40px;
    }
    
    /* Footer auch hier ausblenden */
    .footer-line-2 {
        display: none !important;
    }
}

