/* ==========================================================================
   GRUNDLAGEN & DESIGN SYSTEM (CSS Variablen)
   ========================================================================== */
:root {
    --bg-dark: #000000; 
    --text-light: #FFFFFF !important; 
    --accent-color: #007BFF; 
    --font-heading: 'Syncopate', sans-serif !important;
    --font-body: 'Montserrat', sans-serif !important;
    --spacing-unit: 1rem;
    --header-height: 80px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--text-light); /* Standard-Hintergrund ist jetzt hell */
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 calc(2 * var(--spacing-unit));
  position: fixed; /* Header bleibt am oberen Rand */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.945) !important; /* Halbtransparenter dunkler Hintergrund */
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */


/* ==========================================================================
   INHALTS-SEKTIONEN (Angepasst an deine neue Struktur)
   ========================================================================== */
.content-section {
    padding: calc(4 * var(--spacing-unit)) 0;
}

.content-section.bg-light {
    background-color: var(--bg-light);
}

.main-title, .section-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-align: center;
    margin-bottom: calc(3 * var(--spacing-unit));
}

.main-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-top: calc(2 * var(--spacing-unit));
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.content-grid {
    display: flex;
    align-items: center;
    gap: calc(3 * var(--spacing-unit));
}

.content-grid .content-image, 
.content-grid .content-text {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-unit);
    color: var(--text-light);
}

.content-text p {
    font-family: var(--font-body);
    color: #555; /* Etwas weicheres Textschwarz */
    line-height: 1.7;
}



/* ==========================================================================
   RESPONSIVE & HAMBURGER-MENÜ
   ========================================================================== */
@media (max-width: 767px) {
.main-title {
    font-size: 1.5rem !important;
}

     .section-title {
        display: flex;
        align-items: center;
        font-size: 21px !important;
        text-align: center;
       
    }

    .content-grid {
        flex-direction: column;
    }
   
    .content-grid.reverse-on-desktop {
        flex-direction: column-reverse;
    }

    .footer-col {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-col {
        width: 100%;
    }
}


