/* 
* Coiffeure Vanity - Über Uns-Seite Stile
* Enthält alle spezifischen Stile für die Über Uns-Seite
*/

/* Banner-Bereich */
.page-banner {
    padding-top: 180px;
    padding-bottom: 80px;
    background-color: #4A266A;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.banner-content h1 {
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* About-Sections */
.about-section {
    padding: 100px 0;
}

.about-section.history {
    background-color: white;
}

.about-section.philosophy {
    background-color: var(--light-color);
}

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

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-content {
    direction: ltr;
}

.about-grid.reverse .about-image {
    direction: ltr;
}

.about-content h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    max-width: 100%;
    max-height: 550px;
    margin: 0 auto 30px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.5s ease;
    max-height: 550px;
    display: block;
}

/* Team-Bereich */
.team-section {
    background-color: white;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: minmax(300px, 400px);
    gap: 30px;
    justify-content: center;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.member-image {
    max-width: 100%;
    max-height: 550px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 550px;
    transition: all 0.5s ease;
    display: block;
}

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

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.member-info span {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.member-info .social-links {
    justify-content: center;
    margin-top: 15px;
}

/* Qualifikationen-Bereich */
.qualifications-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.qualification-item {
    display: flex;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.qualification-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.qualification-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.qualification-content p {
    line-height: 1.7;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        max-width: 100%;
        max-height: 500px;
        margin: 0 auto 30px;
    }
    
    .about-image img {
        max-height: 500px;
    }
    
    .team-grid {
        justify-content: center;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image, .member-image img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
       .team-grid {
        justify-content: center;
        grid-template-columns: repeat(1, 1fr);
    }
    .page-banner {
        padding-top: 150px;
        padding-bottom: 60px;
    }
    
    .about-section {
        padding: 70px 0;
    }
    
    .team-section, .qualifications-section {
        padding: 70px 0;
    }
    
    .about-image, .about-image img {
        max-height: 450px;
    }
    
    .member-image, .member-image img {
        max-height: 450px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .qualification-item {
        flex-direction: column;
        text-align: center;
    }
    
    .qualification-item .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-section, .team-section, .qualifications-section {
        padding: 50px 0;
    }
    
    .about-image, .about-image img {
        max-height: 400px;
    }
    
    .member-image, .member-image img {
        max-height: 400px;
    }
} 