/* ===== About Us Hero (angepasst an Startseite) ===== */
 /* Hero Section */
 .hero {
     height: 70vh;
     min-height: 600px;
     background:
         url('../Pictures/auszeichnung.jpg');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.3);
     z-index: 1;
 }

 .hero-content {
     text-align: center;
     color: white;
     z-index: 2;
     position: relative;
     max-width: 800px;
     padding: 0 2rem;
 }

 .hero-title {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 700;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 2s ease-out;
 }

 .hero-subtitle {
     font-size: clamp(2rem, 2.5vw, 1.5rem);
     font-weight: 300;
     margin-bottom: 2rem;
     opacity: 0.9;
     animation: fadeInUp 3s ease-out 0.3s both;
 }

 .hero-btn {
     display: inline-block;
     background: linear-gradient(45deg, #ff6b6b, #ee5a24);
     color: white;
     padding: 1rem 2rem;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     animation: fadeInUp 1s ease-out 0.6s both;
 }

 .hero-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Content Section */
 .content {
     padding: 0rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .content h2 {
     color: #333;
     margin-bottom: 1rem;
     font-size: 2rem;
 }

 .content p {
     color: #666;
     line-height: 1.6;
     margin-bottom: 1rem;
 }


 @media (max-width: 480px) {
     .hero {
         height: 50vh;
         min-height: 350px;
         background:
             url('../Pictures/auszeichnung_mobile.jpg');
     }

     .hero-content {
         padding: 5rem 1rem;
     }

     .content {
         padding: 2rem 1rem;
     }

     .hero-title {
         font-size: 25px;
         font-weight: 700;
         margin-bottom: 1rem;
         text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
         animation: fadeInUp 2s ease-out;
     }

     .hero-subtitle {
         font-size: clamp(1rem, 20vw, 1rem);
         font-weight: 300;
         margin-bottom: 2rem;
         opacity: 0.9;
         animation: fadeInUp 3s ease-out 0.3s both;
     }

 }

/* ===== About Layout ===== */
.content.about {
    padding: 3.5rem 1.25rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(5, 35, 75, 0.10);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.about-card h2 {
    color: #05234b;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
}

.about-lead {
    font-size: 1.12rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-columns p {
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

/* reuse Startseiten-Header Look */
.section-header {
    text-align: center;
    margin: 70px 0 35px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #0b2f5b;
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5b6777;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Kacheln (ruhig & industriell) */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 10px;
}

.about-tile {
    background: #fff;
    border: 1px solid rgba(5, 35, 75, 0.10);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(9, 90, 169, 0.85), rgba(87, 164, 236, 0.85));
}

.about-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(5, 35, 75, 0.14);
    border-color: rgba(5, 35, 75, 0.18);
}

.about-tile h3 {
    margin: 0 0 10px;
    color: #0b2f5b;
    font-size: 1.25rem;
    font-weight: 800;
}

.about-tile p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* Timeline */
.about-timeline {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(5, 35, 75, 0.04);
    border: 1px solid rgba(5, 35, 75, 0.08);
}

.timeline-year {
    font-weight: 800;
    color: #05234b;
}

.timeline-text {
    color: #475569;
    line-height: 1.65;
}

.about-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(5, 35, 75, 0.10);
}

.about-note p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .about-columns {
        grid-template-columns: 1fr;
    }
}

/* ===== Team Image Section ===== */

.about-team {
    margin: 80px auto 100px;
    max-width: 1200px;
    padding: 0 20px;
}

.team-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1.03);
}

/* ===== Mobile Optimierung ===== */

@media (max-width: 768px) {
    .team-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .team-image {
        height: 260px;
    }
}