/* --- Globale Stile & Reset --- */
:root {
    --primary-color: #2c3e50; /* Dunkelblau/Anthrazit für Text */
    --secondary-color: #f39c12; /* Akzentfarbe (z.B. für Buttons) */
    --light-grey: #f8f8f8;
    --medium-grey: #ececec;
    --dark-grey: #34495e; /* Für Footer Hintergrund */
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: rgb(148, 146, 146);
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

h1 { font-size: 2.0em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; }

ul {
    list-style: none;
}

.active {
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-third {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-third:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

/* --- Header & Navigation --- */
.main-header {
    background: var(--dark-grey);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 10px 20px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column; /* WICHTIG: Stapelt Elemente untereinander */
    align-items: center;    /* Zentriert Bild und Text horizontal */
    justify-content: center; /* Zentriert den Block vertikal im Header */
    line-height: 1.2;       /* Verhindert zu große Abstände im Text */
}

.logo img {
    max-height: 100px;       /* Maximale Höhe anpassen (z.B. 40px bis 60px) */
    width: auto;            /* Seitenverhältnis beibehalten */
    margin-bottom: 5px;     /* Kleiner Abstand zum Text darunter */
}

/* Anpassung des Textes (Slogan) */
.logo span {
    font-size: 0.9em;  
    color: white;      /* Text sollte kleiner sein, damit der Header nicht riesig wird */
    text-align: center;     /* Zentriert den Text, falls er umbricht */
    display: block;         /* Sorgt für korrekten Umbruch */
    max-width: 400px;       /* Optional: Begrenzt die Breite, damit der Text umbricht */
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1.1em;
    color: white;
    text-transform: none;
}

.main-nav ul li a:hover {
    color: var(--secondary-color);
}

/* Nav Extra (Telefon, Hamburger) */
.nav-extra {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-extra .phone-link {
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.nav-extra .phone-link i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; 
    padding: 10px;
    position: relative;
    width: 30px;
    height: 30px;
}

.nav-toggle .icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    pointer-events: none; 
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.nav-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .icon-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Main Content Area --- */
.content-area {
    padding-top: 20px; /* Abstand unter dem Header */
    padding-bottom: 40px;
    background: transparent;
}

.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;     
    color: var(--text-light);
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    color: #fff;                  
    padding: 80px 10px;            
}

.index {
    color: #2c3e50;               
}

.kontakt {
    color: white;          
}

.hero h2 {
    color: #2c3e50; 
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    color: #2c3e50;             
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.usp-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}

.usp-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
}

.usp-item i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.usp-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.usp-item p {
    font-size: 0.95em;
    color: #555;
}

.about-preview {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--medium-grey);
    border-radius: 8px;
    margin-bottom: 60px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-grey);
    color: var(--text-light);
    padding: 15px 10px 10px 10px;
    font-size: 0.95em;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-bottom: 20px;
}
.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: var(--text-light);
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}
.opening-hours {
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 15px; 
}
.opening-hours i {
    flex-shrink: 0;
    width: 35px; 
    margin-right: 0; 
    text-align: left;
}
.opening-hours .hours-text {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%; 
    flex-wrap: wrap;
    font-size: 0.85em;
    color: white;
    padding-top: 0px;
}

.footer-bottom .copyright {
  margin: 0; 
  text-align: left; 
}
.footer-bottom .legal-links {
  display: flex; 
  gap: 15px; 
}
.footer-bottom .legal-links a {
    text-align: right;
    text-decoration: none;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
.footer-bottom .legal-links a:hover {
    color: var(--text-light);
}
/* --- Responsive Design --- */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide main nav by default on smaller screens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        color: white; 
        background-color: var(--primary-color);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        max-height: calc(100vh - 80px); /* Fill remaining viewport height */
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.active {
        display: flex; /* Show when active */
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--medium-grey);
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        padding: 15px 20px;
        font-size: 1em;
        font-weight: 500;
    }
    /* Dropdowns for mobile */
    .main-nav .dropdown {
        position: static; /* Stack vertically */
        box-shadow: none;       
        background-color: var(--medium-grey);
        width: 100%;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        display: none; /* Hide by default, show with JS toggle or active class */
        border-top: 1px solid var(--border-color);
    }
    .main-nav .has-dropdown.active > .dropdown {
        display: block; /* Show dropdown when parent is active */
    }
    .main-nav .dropdown li a {
       
        padding-left: 40px; /* Indent dropdown items */
    }
    .main-nav .sub-dropdown {
        position: static;
        box-shadow: none;
        background-color: var(--light-grey);
        width: 100%;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        display: none;
        border-top: 1px solid var(--border-color);
    }
    .main-nav .dropdown li.active > .sub-dropdown {
        display: block;
    }
    .main-nav .sub-dropdown li a {
        color: black;
        padding-left: 60px; /* Further indent sub-dropdown items */
    }
    .nav-toggle {
        display: block;
         color: white; 
        width: 30px;    
        height: 30px;
        padding: 5px;   
    }
    .nav-extra .phone-link {
        display: none; /* Hide phone number on very small screens, or put it in footer */
    }
    .hero h2 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .usp-section {
        flex-direction: column;
        align-items: center;
    }
    .usp-item {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .nav-extra {
        order: 1; /* Puts hamburger next to logo if needed */
        margin-left: auto;
        color: white; /* Push to right */
    }
    .main-nav {
        top: 70px; /* Adjust for taller header with wrapped logo */
    }
    .hero {
        padding: 80px 20px;
    }
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
}

@media (max-width: 900px) {
    .footer-section {
    flex: 0 0 calc(50% - 20px); 
    min-width: 0; 
    }
}

/* --- Mobile (z.B. unter 600px): 1 Spalte --- */
@media (max-width: 600px) {
    .footer-content {
        gap: 30px; /* Auf dem Handy ist 40px oft etwas viel Abstand */
    }
    .footer-section {
        /* Volle Breite */
        flex: 0 0 100%; 
    }
}

/* --- Kontaktbereich spezifische Stile --- */
.contact-hero {
    background-color: #f0f0f0;
    background-image: url('images/kontakt.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;
}
/* Für den Container innerhalb des Hero-Bereichs, der das Hintergrundbild bekommt */
.contact-hero .container {
    color: #fff;                   /* Textfarbe auf Weiß setzen, damit sie vor dunklem Hintergrund besser sichtbar ist */
    text-align: center;              /* Text zentrieren */
    padding: 200px 30px;              /* Innenabstand, um dem Bild Platz zu geben und Text vom Rand fernzuhalten */
    border-radius: 8px;              /* Optionale abgerundete Ecken */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Optionaler leichter Schatten */
    position: relative;              /* Wichtig für das Overlay-Pseudo-Element */
    overflow: hidden;                /* Stellt sicher, dass das Overlay nicht über die Ränder geht */
}
.contact-hero h2 {
    color: var(--text-light);
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
.contact-hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.contact-hero .container::before, .index-hero .container::before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% schwarze Transparenz */
    z-index: 1; /* Stellt sicher, dass das Overlay UNTER dem Text liegt */
}
/* Stellt sicher, dass der Text ÜBER dem Overlay liegt */
.contact-hero .container h2, .contact-hero .container p, .inxex-hero .container h2, .index-hero .container p {
    position: relative;
    z-index: 2;
}
.contact-form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}
.contact-details {
    flex: 1;
    min-width: 40%;
    background-color: transparent;
    padding: 25px;
}
.contact-details h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.contact-details p {
    margin-bottom: 15px;
    line-height: 1.4;
    color: #555;
}
.contact-details p i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.0em;
    width: 20px; /* Für einheitliche Ausrichtung */
    text-align: center;
}
.contact-details .btn-secondary {
    margin-top: 20px;
}
.map-placeholder {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.map-placeholder iframe {
    display: block; /* Removes extra space below iframe */
}
.contact-form-wrapper {
    flex: 2; /* Nimmt mehr Platz ein */
    min-width: 350px;
    background-color: transparent;
    padding: 30px;
}
.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
    font-size: 0.95em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--primary-color);
    background-color: var(--light-grey);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb), 0.2);
}
:root {
    --secondary-color-rgb: 243, 156, 18; /* RGB values for #f39c12 */
}
.contact-form select {
    appearance: none; /* Removes default select arrow */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%232c3e50" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}
.contact-form textarea {
    resize: vertical; /* Only allow vertical resizing */
}
.contact-form .required {
    color: #e74c3c; /* Rotes Sternchen für Pflichtfelder */
    margin-left: 5px;
}
.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.contact-form .checkbox-group input[type="checkbox"] {
    margin-top: 5px; /* Align checkbox with text */
    margin-right: 10px;
    width: auto;
    accent-color: var(--secondary-color); /* Farbe des Hakens */
}
.contact-form .checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
}
.contact-form .checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}
.contact-form .checkbox-group label a:hover {
    color: var(--secondary-color);
}
.contact-form .btn-primary {
    width: auto; /* Buttons don't need full width */
    font-size: 1.1em;
    padding: 15px 30px;
    margin-top: 10px;
}
/* Error messages for form validation */
.error-message {
    color: #e74c3c;
    font-size: 0.85em;
    margin-top: 5px;
    display: none; /* Hidden by default, shown by JS */
}
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none; /* Hidden by default */
}
.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Responsive Anpassungen für Kontaktformular */
@media (max-width: 768px) {
    .contact-form-section {
        flex-direction: column;
        gap: 30px;
    }
    .contact-details,
    .contact-form-wrapper {
        min-width: unset;
        width: 100%;
    }
    .contact-hero h2 {
        font-size: 2.2em;
    }
    .contact-hero p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-details h3,
    .contact-form-wrapper h3 {
        font-size: 1.4em;
    }
    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}

#imgOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease; /* Fade-Out */
}

/* Bildcontainer */
#imgContainer {
    position: relative;              
    max-width: 350px;
    background: transparent;
    padding: 15px;
}    

/* Flyerbild */
#imgContainer img {
    width: 100%;
    height: auto;
    display: block;
}

#imgContainer p {
    text-align: center;
}

/* Schließen Button */
#closeBtn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff4444;
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

#closeBtn:hover {
    background: #cc0000;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block; /* oder inline */
    }
}

.bilder-container {
  display: flex; /* Macht den Container zu einem Flex-Container */
  justify-content: center; /* Optional: Zentriert die Bilder im Container */
  gap: 20px; /* Optional: Fügt Abstand zwischen den Bildern hinzu */
  flex-wrap: wrap; /* Optional: Lässt die Bilder umbrechen, wenn der Platz nicht reicht */
}

.bild-mit-rahmen {
  /* Behält die meisten vorherigen Stile bei */
  display: flex; /* Macht es selbst zum Flex-Container für Bild und Textrahmen */
  flex-direction: column; /* Ordnet Bild und Textrahmen untereinander an */
  border: 1px solid #ccc; /* Optional: Ein leichter Rahmen um den gesamten Block */
  padding: 5px; /* Optional: Etwas Polsterung innen */
  /* Optional: Um die Breite der einzelnen Bilder zu steuern, z.B. 45% für zwei nebeneinander mit etwas Abstand */
  width: 45%; /* Beispielbreite, damit 2 Bilder nebeneinander passen */
  box-sizing: border-box; /* Stellt sicher, dass padding und border in der Breite enthalten sind */
}

.bild-mit-rahmen img {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-rahmen {
  background-color: white;
  border-top: none;
  border-left: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  padding: 10px;
  text-align: center;
  color: black;
  font-size: 14px;
}

.reviews {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 10px 10px 10px 10px;
}
.ueberschrift {
      font-size: 1.8em;
      text-align: center;
      margin: 30px 0;
    }
.zentriert {
      text-align: center;
 }
 a {
  color: blue;
  text-decoration:none;
 }
 a:hover {
  text-decoration:underline;
 }

 .review-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.review-card:hover {
    background: rgb(235, 208, 208);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    font-weight: bold;
    font-size: 1.1em;
}

.review-date {
    font-size: 0.9em;
    color: #888;
}

.stars {
    color: #ffb400;
    font-size: 1.2em;
}

.review-text {
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.rating-logo {
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
.rating-tag {
    background: #eafaf1;
    color: #2d8659;
    font-size: 0.85em;
    padding: 4px 8px;
    border-radius: 12px;
}

.rating-tag.yellow {
    background: #fff6db;
    color: #a67c00;
}

.highlights {
    font-style: italic;
    font-size: 0.9em;
    color: #555;
}

@media (min-width: 768px) {
  .reviews {
    grid-template-columns: 1fr 1fr; /* ab 700px: 2 Spalten */
  }
}

@media (min-width: 1200px) {
  .reviews {
    grid-template-columns: 1fr 1fr 1fr; /* ab 1200px: 3 Spalten */
  }
}
 
.content {
    max-width: 1400px;
    padding: 20px;
    margin: auto;
    text-align: left;
}
.content ul {
    margin-left: 30px;
    list-style-type: disc; 
}

 .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.item img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.text {
  flex: 1;
}

.item.right {
  flex-direction: row-reverse; 
}

@media (max-width: 600px) {
  .item, 
  .item.right { /* Beides wird überschrieben */
    flex-direction: column; /* Untereinander */
    align-items: center;
  }

  .item img {
    width: 100%; /* Oder 80%, je nach Geschmack */
    margin-bottom: 15px;
  }
}
