/* 
* Microsoft365-Trainer
* Über uns Stylesheet 
*/

/* Banner Styles */
.about-banner {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--secondary-lighter) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.7;
    z-index: 0;
}

.about-banner::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.7;
    z-index: 0;
}

.about-banner h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-banner p {
    font-size: 1.2rem;
    color: var(--dark-light);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.story-content p {
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-m);
    box-shadow: var(--shadow-medium);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mission-header p {
    color: var(--dark-light);
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius-m);
    padding: 2rem;
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.value-card p {
    color: var(--dark-light);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    color: var(--dark-light);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.team-social {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.team-social:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--white);
    border-radius: var(--border-radius-m);
    padding: 2rem;
    box-shadow: var(--shadow-small);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-content p {
    color: var(--dark-light);
}

/* References Section */
.references-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reference-card {
    background-color: var(--light);
    border-radius: var(--border-radius-m);
    padding: 2rem;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.reference-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reference-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: var(--border-radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.reference-quote {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.reference-quote p {
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.reference-quote cite {
    display: block;
    color: var(--dark-light);
    font-style: normal;
}

.reference-quote cite strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before, 
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta-section::before {
    top: -150px;
    left: -150px;
}

.cta-section::after {
    bottom: -150px;
    right: -150px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .about-banner h1 {
        font-size: 2.4rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .mission-header h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 7rem 0 3rem;
    }
    
    .about-banner h1 {
        font-size: 2rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
    
    .story-section,
    .mission-section,
    .team-section,
    .why-us-section,
    .references-section {
        padding: 3rem 0;
    }
    
    .story-content h2,
    .mission-header h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-banner h1 {
        font-size: 1.8rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-content h3 {
        font-size: 1.2rem;
    }
    
    .reference-logo {
        height: 60px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}