/* ==========================================
   ÜBER UNS PAGE STYLES
   ========================================== */

:root {
    --primary-color: #0891b2;
    --secondary-color: #10b981;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
}

/* Hero Section */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-particles .particle:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.hero-particles .particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.hero-particles .particle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.hero-particles .particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 26s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(20px) translateX(-20px);
    }
    75% {
        transform: translateY(-20px) translateX(30px);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: inline-block;
    margin: 0 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Introduction */
.team-intro {
    padding: 80px 0 60px 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5), 
        rgba(249, 250, 251, 0.5));
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content {
    animation: fadeInLeft 1s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-center {
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-visual {
    animation: fadeInRight 1s ease;
}

.visual-card {
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--text-primary) !important;
}

.visual-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1), 
        rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Teamwork Container */
.teamwork-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.teamwork-image-wrapper {
    padding: 0;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.08), 
        rgba(16, 185, 129, 0.08));
    border-radius: 20px;
    transition: all 0.3s ease;
}

.teamwork-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.teamwork-image-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.teamwork-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s ease;
}

.teamwork-image-wrapper:hover img {
    transform: scale(1.05);
}

.teamwork-text {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.teamwork-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.teamwork-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Team Members */
.team-members {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, 
        rgba(249, 250, 251, 0.3), 
        rgba(240, 247, 250, 0.5));
    border-top: 1px solid rgba(8, 145, 178, 0.08);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.member-card {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98) !important;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1), 
        rgba(16, 185, 129, 0.05));
}

.member-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

/* Individuelle Positionierung für Laura */
.member-card:first-child .member-image img {
    object-position: center 6%;
}

/* Individuelle Positionierung für Karin */
.member-card:last-child .member-image img {
    object-position: center 21%;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}


.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.member-content {
    padding: 2rem;
}

.member-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.member-bio {
    margin-bottom: 1.5rem;
}

.member-bio p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.member-quote {
    padding: 1.5rem;
    position: relative;
    margin-top: 1.5rem;
    background: rgba(240, 249, 255, 0.95) !important;
    border: 1px solid rgba(8, 145, 178, 0.15);
}

.quote-icon {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.member-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Our Approach */
.our-approach {
    padding: 100px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.approach-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95) !important;
}

.approach-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.1), 
        rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.approach-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon svg {
    stroke: white;
}

.approach-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary) !important;
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.our-values {
    padding: 100px 0;
    background: linear-gradient(to bottom, 
        rgba(249, 250, 251, 0.5), 
        rgba(255, 255, 255, 0.5));
}

.values-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.8);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary) !important;
}

.value-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-visual {
    animation: fadeInRight 1s ease;
}

.value-card {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95) !important;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary) !important;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.value-card .btn {
    align-self: flex-start;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(8, 145, 178, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
}

.cta-wrapper {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(255, 255, 255, 0.95)) !important;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary) !important;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid,
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .team-intro {
        padding: 60px 0 40px 0;
    }
    
    .team-members {
        padding: 40px 0 60px 0;
    }
    
    .stats-row {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .member-image {
        height: 320px;
    }
    
    .member-image img {
        object-position: center 25%;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
}