@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logo-Bild Styling */
.head-banner {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 5px 0;
}

.logo-container {
    background-color: #ffffff;
    padding: 3px 0;
    text-align: center;
    width: 100%;
    margin-top: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo-Container und Logo nur in der Desktop-Ansicht größer */
@media (min-width: 769px) {
    .logo-container {
        display: none;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

/* Überschriften und Links wieder Standardfarben */
/* Entferne globale h1-h6, a, a:hover Regeln */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* entferne background, border-radius, box-shadow */
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 10;
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d35400, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo h2 {
    color: #1e3a8a;
    font-weight: 600;
}

/* In der Desktop-Ansicht nur "Gamma Systemtechnik" anzeigen */
.nav-logo h2[data-page] {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link.active {
    color: #1e3a8a !important;
    font-weight: 800;
    background: #e9ecef;
    border-radius: 8px;
    padding: 10px 18px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    transition: background 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2c5aa0;
}

.nav-link, .dropdown-menu a {
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.3) 0%, rgba(52, 73, 94, 0.3) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/48454daf-82c5-42d1-bb8e-1816c33cb3b5.jpg');
    background-size: cover;
    background-position: left 30%;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero {
    position: relative;
    padding: 180px 0 120px;
}
.hero::after {
    display: none !important;
}
.hero::before {
    filter: brightness(1.08) contrast(1.08) saturate(1.1);
}
.hero > * {
    position: relative;
    z-index: 1;
}

/* Branchenkompetenz Section */
.branches-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Collage Section */
.collage-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 120px);
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.collage-item {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.10),
        0 2px 6px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 6px 10px 24px rgba(44, 62, 80, 0.18);
}

.collage-item:hover {
    transform: perspective(1000px) translateY(-12px) scale(1.03) rotateX(0deg);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.13),
        0 4px 12px rgba(0, 0, 0, 0.10),
        0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 3px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 0 rgba(0, 0, 0, 0.07);
}

.collage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-item:hover::before {
    opacity: 1;
}

.collage-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.collage-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.collage-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Erweiterte Collage-Ansicht */
.collage-item.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    min-height: 0;
    z-index: 10000;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: rgba(176, 226, 255, 0.95) !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.collage-item.expanded .collage-details {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: 80vh;
    min-height: 0;
}

.collage-item.expanded[style*="rgba(255, 127, 36"] {
    background-color: rgba(255, 127, 36, 0.95) !important;
}

.collage-item.expanded[style*="rgba(166, 166, 166"] {
    background-color: rgba(166, 166, 166, 0.95) !important;
}

.collage-item.expanded[style*="rgba(154, 205, 50"] {
    background-color: rgba(154, 205, 50, 0.95) !important;
}

.collage-item.expanded[style*="rgba(255, 140, 0"] {
    background-color: rgba(255, 140, 0, 0.95) !important;
}

.collage-item.expanded[style*="rgba(16, 78, 139"] {
    background-color: rgba(16, 78, 139, 0.95) !important;
}

.collage-item.expanded[style*="rgba(135, 206, 255"] {
    background-color: rgba(135, 206, 255, 0.95) !important;
}

.collage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.collage-overlay.active {
    opacity: 1;
    visibility: visible;
}

.collage-item.expanded .collage-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.collage-item.expanded .collage-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
}

.collage-item.expanded .collage-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000000;
}

/* Detail-Ansicht für erweiterte Collage-Items */
.collage-details {
    display: none;
    padding: 30px;
    color: #000000;
    text-align: left;
}

.collage-item.expanded .collage-details {
    display: block;
}

.collage-item.expanded .collage-content {
    display: none;
}

.collage-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.collage-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
}

.collage-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collage-details li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #000000;
    padding-left: 0;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.collage-item.expanded .close-button {
    display: flex;
}

.close-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Responsive Design für Collage */
@media (max-width: 768px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 100px);
        gap: 10px;
    }
    
    .collage-item {
        grid-area: auto !important;
    }
    
    .collage-content h3 {
        font-size: 1rem;
    }
    
    .collage-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 80px);
        gap: 8px;
    }
    
    .collage-content h3 {
        font-size: 0.9rem;
    }
    
    .collage-content p {
        font-size: 0.7rem;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.hero-content p {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.placeholder-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-desktop-image {
    display: none;
}
@media (min-width: 769px) {
    .hero-desktop-image {
        display: block;
        max-width: 48%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 8px 32px rgba(30,58,138,0.13);
        margin-left: 40px;
        object-fit: cover;
    }
    .hero-container {
        align-items: center;
    }
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    font-weight: 700;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.value {
    padding: 25px 20px;
    background: #2c3e50 !important;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff !important;
}

.value:hover {
    border-color: #2c3e50;
    transform: translateY(-2px);
}

.value h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 10px;
}

.value p {
    color: #fff !important;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 200px !important;
    text-align: center !important;
    margin-bottom: 20px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: center !important;
    margin: 0 auto 4px auto !important;
    flex: 1 1 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 8px;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: 24px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 35px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-logo h2 {
        display: block;
        font-size: 1.2rem;
        color: #2c3e50;
    }
    
    /* In der mobilen Ansicht den Seitentitel anzeigen */
    .nav-logo h2:not([data-page]) {
        display: none !important;
    }
    
    .nav-logo h2[data-page] {
        display: block !important;
    }
    
    .nav-logo-img {
        display: block !important;
        height: 64px;
        width: auto;
        margin-right: 16px;
    }
    
    .nav-link.active {
        color: #1e3a8a !important;
        font-weight: 800 !important;
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        color: #495057;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:hover {
        background-color: transparent;
        color: #2c5aa0;
    }
    
    .hero {
        padding: 5px 0 0px;
        margin-top: 90px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value {
        padding: 20px 15px;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 350px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* CTA Button mobile Anpassung */
    .cta-section-mobile {
        display: block;
        background-color: #ffffff;
        padding: 20px 0;
        text-align: center;
    }
    
    .mobile-cta {
        position: static !important;
        display: inline-block;
        margin: 0 auto;
        width: fit-content;
        padding: 12px 24px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* Branchenkompetenz mobile Anpassung */
    .branches-grid {
        gap: 20px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    /* Desktop-Ansicht: 3 Icons pro Reihe */
    @media (min-width: 769px) {
        .cta-section-mobile {
            display: none !important;
        }
        
        .desktop-only {
            display: inline-block !important;
        }
        
        .mobile-cta {
            display: none !important;
        }
        
        .desktop-only.cta-button {
            position: absolute !important;
            top: 80px;
            right: 30% !important;
            display: inline-block !important;
            margin: 0;
        }
        
        .branches-grid {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 40px !important;
            justify-content: center !important;
            max-width: 800px !important;
            margin: 0 auto !important;
        }
        
        .branch-item {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            min-width: auto !important;
        }
    }
    
    .branch-item {
        min-width: 80px !important;
    }
    
    .branch-item span {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
        margin: 0;
    }
    
    .head-banner {
        width: 200px;
        padding: 1px 0;
        max-height: 40px;
    }
    
    .logo-container {
        width: 50%;
        margin: 0 auto;
        padding: 5px 0;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .value {
        padding: 15px 10px;
    }
    
    .value h4 {
        font-size: 1.1rem;
    }
    
    .value p {
        font-size: 0.9rem;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Branchenkompetenz kleine mobile Anpassung */
    .branches-grid {
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .branch-item {
        min-width: 70px !important;
    }
    
    .branch-item span {
        font-size: 0.8rem !important;
    }
    
    .branch-item svg {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* Footer mobile Anpassungen */
    .footer {
        padding: 8px 0 4px !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 4px !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 4px !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 3px !important;
        font-size: 0.95rem !important;
    }
    
    .footer-section p {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }
    
    .footer-bottom {
        padding-top: 4px !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
    }
    
    /* Mobile Logo unter Navigation */
    .mobile-logo {
        display: none;
        text-align: center;
        padding: 15px 20px;
        background-color: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }
    
    .mobile-logo img {
        max-width: 200px;
        height: auto;
    }
} 

/* Mobile Logo nur in mobilen Ansichten anzeigen */
@media (max-width: 768px) {
    .mobile-logo {
        display: block;
    }
    
    .mobile-logo-new {
        display: block;
        text-align: center;
        padding: 20px 20px 15px 20px;
        background-color: #ffffff;
        border-bottom: 1px solid #e9ecef;
        margin-top: 10px;
    }
    
    .mobile-logo-new img {
        max-height: 120px;
        width: auto;
    }
}

/* Mobile Logo in Desktop-Ansicht ausblenden */
@media (min-width: 769px) {
    .mobile-logo-new {
        display: none;
    }
} 

@media (max-width: 768px) {
    .haftungshinweis-mobil {
        font-size: 0.65rem !important;
    }
} 

@media (min-width: 769px) {
    .nav-logo h2 {
        color: #2c3e50 !important;
    }
    
    .nav-logo-img {
        height: 80px;
        width: auto;
        display: block;
        margin-left: 0;
        margin-right: 18px;
    }
    
    /* Desktop Footer: Nebeneinander statt untereinander */
    .footer-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 40px !important;
    }
    
    .footer-section {
        text-align: left !important;
        margin-bottom: 0 !important;
        width: auto !important;
        flex: 1 !important;
    }
    .footer-section:last-child {
        margin-right: 60px !important;
    }
} 

.members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    text-align: center;
} 

.leadership-section .members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 24px;
    text-align: center;
} 

.section, .about, .team-members, .leadership-section {
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.members-grid, .leadership-grid {
    background: transparent;
}

.member-card, .leadership-card {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
}

.member-title {
    color: inherit;
}

input, textarea, select {
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #000;
    padding: 8px 12px;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    border-color: #1e3a8a;
    outline: none;
} 

.mobile-cta-section, .mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-section {
        display: block;
        background: #fff;
        padding: 20px 0 10px 0;
        text-align: center;
    }
    .mobile-cta {
        display: inline-block;
        position: static;
        margin: 0 auto;
        width: fit-content;
        font-size: 1rem;
    }
    .cta-button.desktop-only {
        display: none !important;
    }
} 

.values-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
@media (max-width: 600px) {
    .values-grid-modern {
        grid-template-columns: 1fr;
    }
}
.value-card-modern {
    color: #000 !important;
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.value-card-modern:hover {
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}
.value-card-modern.value-blau {
    background: rgba(166,166,166,0.7);
    color: #1e293b;
}
.value-card-modern.value-orange {
    background: rgba(230,126,34,0.7);
    color: #fff;
}
.value-card-modern.value-gruen {
    background: rgba(154,205,50,0.7);
    color: #fff;
}
.value-card-modern.value-hellblau {
    background: rgba(176,226,255,0.7);
    color: #1e293b;
}
.value-card-modern h3 {
    color: #000 !important;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}
.value-card-modern.value-blau h3,
.value-card-modern.value-orange h3,
.value-card-modern.value-gruen h3 {
    color: #fff;
}
.value-card-modern.value-hellblau h3 {
    color: #1e3a8a;
}
.value-card-modern p {
    color: #000 !important;
    font-size: 1rem;
    margin: 0;
    text-align: center;
} 

.value-card-modern.value-grau {
    background: rgba(166,166,166,0.7);
    color: #1e293b;
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.value-card-modern.value-grau h4 {
    color: #1e293b;
}

@media (min-width: 769px) {
    .hero::before {
        background-image: url('../img/48454daf-82c5-42d1-bb8e-1816c33cb3b5.jpg');
    }
} 

.leistungen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin: 24px 0 32px 0;
}
.leistungen-grid ul, .leistungen-grid li {
    font-size: 1.3rem !important;
    color: #495057 !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
}
@media (max-width: 900px) {
    .leistungen-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
} 

.step {
    background: #f8f9fa;
} 

.process-steps .step:nth-child(1) {
    background: rgba(176,226,255,0.7);
}
.process-steps .step:nth-child(2) {
    background: rgba(154,205,50,0.7);
}
.process-steps .step:nth-child(3) {
    background: rgba(166,166,166,0.7);
}
.process-steps .step:nth-child(4) {
    background: rgba(230,126,34,0.7);
} 

.process-steps .step {
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} 

.process-steps .step-number {
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3), 0 4px 24px rgba(0,0,0,0.25), 0 1.5px 8px rgba(0,0,0,0.18);
} 

.benefits-grid .benefit-card:nth-child(1) {
    background: rgba(176,226,255,0.7) !important;
}
.benefits-grid .benefit-card:nth-child(2) {
    background: rgba(154,205,50,0.7) !important;
}
.benefits-grid .benefit-card:nth-child(3) {
    background: rgba(166,166,166,0.7) !important;
}
.benefits-grid .benefit-card:nth-child(4) {
    background: rgba(230,126,34,0.7) !important;
} 

.benefits-grid .benefit-card {
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} 

.benefit-icon {
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    width: auto;
    height: auto;
} 

.contact-grid .contact-card:nth-child(1) {
    background: rgba(176,226,255,0.7) !important;
}
.contact-grid .contact-card:nth-child(2) {
    background: rgba(154,205,50,0.7) !important;
}
.contact-grid .contact-card:nth-child(3) {
    background: rgba(230,126,34,0.7) !important;
} 

.contact-grid .contact-card {
    border-radius: 16px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
} 

.pv-collage {
    position: relative;
    background-color: rgba(135, 206, 255, 0.7) !important;
    overflow: hidden;
}
.pv-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 10_33_15.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.pv-collage .collage-content,
.pv-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.emsr-collage {
    position: relative;
    background-color: rgba(154, 205, 50, 0.7) !important;
    overflow: hidden;
}
.emsr-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 10_41_00.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.emsr-collage .collage-content,
.emsr-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.wind-collage {
    position: relative;
    background-color: rgba(16, 78, 139, 0.7) !important;
    overflow: hidden;
}
.wind-collage::after, .wind-collage.expanded::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 24. Juli 2025, 16_52_22.png') center center/cover no-repeat;
    opacity: 0.38;
    z-index: 1;
    pointer-events: none;
}
.wind-collage .collage-content,
.wind-collage .collage-details,
.wind-collage.expanded .collage-content,
.wind-collage.expanded .collage-details {
    position: relative;
    z-index: 2;
} 

.bau-collage {
    position: relative;
    background-color: rgba(16, 78, 139, 0.7) !important;
    overflow: hidden;
}
.bau-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 10_55_34.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.bau-collage .collage-content,
.bau-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.lade-collage {
    position: relative;
    background-color: rgba(154, 205, 50, 0.7) !important;
    overflow: hidden;
}
.lade-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 11_00_42.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.lade-collage .collage-content,
.lade-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.verfahren-collage {
    position: relative;
    background-color: rgba(255, 140, 0, 0.7) !important;
    overflow: hidden;
}
.verfahren-collage::after, .verfahren-collage.expanded::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/verfahrenstechnik.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.verfahren-collage .collage-content,
.verfahren-collage .collage-details,
.verfahren-collage.expanded .collage-content,
.verfahren-collage.expanded .collage-details {
    position: relative;
    z-index: 2;
} 

.bautechnik-collage {
    position: relative;
    background-color: rgba(166, 166, 166, 0.7) !important;
    overflow: hidden;
}
.bautechnik-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 11_11_59.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.bautechnik-collage .collage-content,
.bautechnik-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.projekterfolg-collage {
    position: relative;
    background-color: rgba(255, 127, 36, 0.7) !important;
    overflow: hidden;
}
.projekterfolg-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 11_21_06.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.projekterfolg-collage .collage-content,
.projekterfolg-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.leistungen-collage {
    position: relative;
    background-color: rgba(176, 226, 255, 0.7) !important;
    overflow: hidden;
}
.leistungen-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/ChatGPT Image 22. Juli 2025, 11_31_13.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}
.leistungen-collage .collage-content,
.leistungen-collage .collage-details {
    position: relative;
    z-index: 2;
} 

.collage-hinweis-cta {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 18px;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
    font-weight: 600;
    background: linear-gradient(135deg, #e67e22, #d35400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 

@media (max-width: 768px) {
    .pv-collage::after,
    .emsr-collage::after,
    .wind-collage::after,
    .bau-collage::after,
    .lade-collage::after,
    .verfahren-collage::after,
    .bautechnik-collage::after,
    .projekterfolg-collage::after,
    .leistungen-collage::after {
        opacity: 0 !important;
    }
} 

#kontaktformular, #anfahrt {
    scroll-margin-top: 120px;
} 

.thin {
    font-weight: 200;
    letter-spacing: 0.01em;
} 

@font-face {
    font-family: 'Exotc 350 Bd BT';
    src: url('fonts/EXOT350B.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Exotc 350 Bd BT für alle gewünschten Überschriften */
.hero-content h1, /* Von der Idee zur Lösung - wir planen das. */
.branches-section h3, /* Unsere Branchenkompetenz */
.page-header h1, /* Über uns im blauen Header, Kontakt & Anfahrt, Impressum */
.about h2, /* Das Team hinter Gamma Systemtechnik, Unsere Teamwerte */
.leadership-section h2, /* Geschäftsführung */
.team-members h2, /* Unser Team */
.about-values h2, /* Unsere Teamwerte */
.service-category h2, /* Unsere Leistungen, Unsere Planungsleistungen... */
.bauleitung > .container > h2, /* Bauleitung und Bauüberwachung */
.process > .container > h2, /* Unser Arbeitsprozess */
.jobs > .container > h2, /* Karriere bei uns */
.jobs h3, /* Jobangebot */
.why-section h2, /* Warum bei uns arbeiten? */
.contact-form-section h2, /* Kontakt */
.map-section h2, /* Anfahrt */
.impressum-section h2, /* Impressum */
.impressum-section h3, /* Verantwortlich, Kontakt, Registereintrag, Umsatzsteuer-ID, Steuer-Nr. */
.impressum-section h4 /* falls vorhanden */
{
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

.hero-content p {
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.branch-item span {
    font-family: 'Antenne Regular', Arial, sans-serif;
}

.collage-content, .collage-details, .collage-content h3, .collage-content p, .collage-details h4, .collage-details p, .collage-details ul, .collage-details li {
    font-family: 'Antenne Regular', Arial, sans-serif !important;
}

.collage-hinweis-cta {
    font-family: 'Antenne Regular', Arial, sans-serif;
} 

/* Über uns: Exotc 350 Bd BT für bestimmte Überschriften */
.ueber-uns .page-header h1, .page-header h1 {
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
}

/* Über uns & Home: Antenne Regular für Fließtext, Listen, Team, Collage, Branchen-Labels, Hinweise */
.about p,
.about ul,
.about li,
.leadership-section p,
.leadership-section .member-title,
.team-members p,
.team-members .member-title,
.about-values p,
.about-values li,
.hero-content p,
.branch-item span,
.collage-content, .collage-details, .collage-content h3, .collage-content p, .collage-details h4, .collage-details p, .collage-details ul, .collage-details li,
.collage-hinweis-cta {
    font-family: 'Antenne Regular', Arial, sans-serif !important;
} 

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, button, .cta-button, .nav-link, .dropdown-menu a, .collage-content, .collage-details, .collage-content h3, .collage-content p, .collage-details h4, .collage-details p, .collage-details ul, .collage-details li, .collage-hinweis-cta, .branch-item span, .about-values h2, .about-values h3, .team-section h2, .leadership-section h2, .team-members h2, .about h2, .page-header h1, .footer-section, .footer-section h3, .footer-section h4, .footer-section p {
    font-family: 'Antenne Regular', Arial, sans-serif !important;
} 

@font-face {
    font-family: 'Antenne Regular';
    src: url('fonts/Antenne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} 

.team-intro h2 {
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
} 

.leadership-section h2,
.about-values h2 {
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
} 

.team-members h2,
.team-values h2 {
    font-family: 'Exotc 350 Bd BT', Arial, sans-serif !important;
} 

footer .container {
    max-width: 100vw !important;
    width: 100%;
    padding: 0;
} 

.collage-item[style*="rgba(176, 226, 255"] {
    background-color: rgba(176, 226, 255, 0.88) !important;
}
.collage-item[style*="rgba(255, 127, 36"] {
    background-color: rgba(255, 127, 36, 0.88) !important;
}
.collage-item[style*="rgba(166, 166, 166"] {
    background-color: rgba(166, 166, 166, 0.88) !important;
}
.collage-item[style*="rgba(154, 205, 50"] {
    background-color: rgba(154, 205, 50, 0.88) !important;
}
.collage-item[style*="rgba(255, 140, 0"] {
    background-color: rgba(255, 140, 0, 0.88) !important;
}
.collage-item[style*="rgba(16, 78, 139"] {
    background-color: rgba(16, 78, 139, 0.88) !important;
}
.collage-item[style*="rgba(135, 206, 255"] {
    background-color: rgba(135, 206, 255, 0.88) !important;
} 

@media (max-width: 768px) {
    .collage-hinweis-cta {
        font-size: 0.85rem;
    }
} 

@media (max-width: 768px) {
    .hamburger {
        position: absolute;
        right: 16px;
        left: auto;
        top: 28px;
        margin-left: 0;
    }
} 

@media (max-width: 768px) {
    .nav-logo-img {
        margin-left: 16px !important;
    }
} 

@media (max-width: 768px) {
    .hero-content h1 {
        margin-top: 60px !important;
    }
    .hero-content p {
        margin-top: 0 !important;
        background: none !important;
    }
} 

@media (min-width: 769px) {
    .cta-button.desktop-only {
        position: absolute;
        right: 40px;
        top: 120px;
        left: auto;
        width: auto;
        max-width: none;
        z-index: 10;
    }
} 

.hero-content h1 {
    white-space: normal;
    word-break: normal;
    max-width: 100%;
    text-align: left;
    font-size: 2.2rem;
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
} 

.itsicherheit-collage.expanded {
    background-color: rgba(166, 166, 166, 0.7) !important;
} 

.konzepte-collage.expanded {
    background-color: rgba(230,126,34,0.88) !important;
} 

.projekterfolg-collage.expanded {
    background-color: rgba(16, 78, 139, 0.88) !important;
} 

.itsicherheit-collage::after, .itsicherheit-collage.expanded::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/itsicherheit.png') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.itsicherheit-collage .collage-content,
.itsicherheit-collage .collage-details,
.itsicherheit-collage.expanded .collage-content,
.itsicherheit-collage.expanded .collage-details {
    position: relative;
    z-index: 2;
} 

.konzepte-collage::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/konzepte.jpeg') center center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.konzepte-collage .collage-content,
.konzepte-collage .collage-details,
.konzepte-collage.expanded .collage-content,
.konzepte-collage.expanded .collage-details {
    position: relative;
    z-index: 2;
} 