/* Стилі для секції про нас */
.about-us {
    padding: 80px 0;
    background: url('img/bcg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.about-us .container {
    position: relative;
    z-index: 2;
}

.about-us .section-title {
    margin-bottom: 50px;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #FFD700;
}

/* Стилі для профілю тренера */
.coach-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 3px solid #FFD700;
}

.coach-image {
    text-align: center;
}

.coach-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.coach-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.coach-details {
    color: #fff;
}

.coach-name {
    font-size: 2.2rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.coach-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFD700, transparent);
}

.coach-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.coach-bio p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.coach-achievements {
    margin-top: 30px;
}

.coach-achievements h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.achievements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.achievement-item {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #FFD700;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 215, 0, 0.4);
}

/* Стилі для додаткових фото */
.additional-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px 0;
    position: relative;
}

.additional-photos::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.additional-photos::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.photo-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-frame.featured {
    width: 80%;
    margin: 0 auto;
    border: 5px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2);
}

.photo-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.photo-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(1.1) contrast(1.1);
}

.photo-frame:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    transition: padding 0.3s ease;
}

.photo-frame:hover .photo-caption {
    padding-bottom: 25px;
}

.photo-caption h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

/* Стилі для тренерського штату */
.coaching-staff, .school-philosophy {
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.coaching-staff {
    border-left: 3px solid #FFD700;
}

.school-philosophy {
    border-right: 3px solid #FFD700;
}

.staff-title, .philosophy-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.staff-description p, .philosophy-description p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Медіа-запити для адаптивності */
@media (max-width: 992px) {
    .coach-profile {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .coach-image {
        margin-bottom: 30px;
    }
    
    .photo-frame.featured {
        width: 100%;
    }
    
    .coaching-staff, .school-philosophy {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-us .section-title {
        font-size: 2rem;
        padding-left: 15px;
    }
    
    .coach-name {
        font-size: 1.8rem;
    }
    
    .staff-title, .philosophy-title {
        font-size: 1.5rem;
    }
    
    .photo-frame img {
        height: 300px;
    }
    
    .coach-profile, .coaching-staff, .school-philosophy {
        padding: 15px;
    }
    
    .coach-details h3::after {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 40px 0;
    }
    
    .coach-image img {
        max-width: 250px;
    }
    
    .coach-name {
        font-size: 1.6rem;
    }
    
    .achievement-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .photo-frame img {
        height: 250px;
    }
    
    .photo-caption h4 {
        font-size: 1rem;
    }
}