/* about.css - Style specyficzne dla strony O nas MediHub Theme */
/* Lokalizacja: /user/themes/medihub-theme/css/about.css */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-medium) 100%);
    color: var(--white);
    position: relative;
    padding-top: 120px;
    padding-bottom: 40px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 70%;
    background-color: rgba(117, 169, 249, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.about-hero .hero-container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    color: var(--off-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 120px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--off-white);
    line-height: 1.3;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: var(--off-white);
    padding: 30px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--orange);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-card {
    border-top-color: var(--blue-medium);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: var(--transition);
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--blue-medium), var(--blue-dark));
}

.mission-card .card-icon:hover,
.vision-card .card-icon:hover {
    transform: scale(1.1);
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team {
    background-color: var(--white);
    padding: 30px 0;
}

.team-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--blue-light);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--orange);
}

.member-photo {
    margin-bottom: 0.5rem;
}

.member-photo img {
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 3px solid var(--gray-light);
    transition: var(--transition);
}

.team-member:hover .member-photo img {
    border-color: var(--orange);
    transform: scale(1.05);
}

.member-info h4 {
    font-size: 1.3rem;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-position {
    display: block;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team CTA (recruitment section) */
.team-cta {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-cta p {
    color: var(--off-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Values Section */
.values {
    background-color: var(--gray-light);
    padding: 30px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--orange);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card:nth-child(even) {
    border-top-color: var(--blue-medium);
}

.value-card:nth-child(3n) {
    border-top-color: var(--blue-dark);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:nth-child(even) .value-icon {
    background: var(--blue-medium);
}

.value-card:nth-child(3n) .value-icon {
    background: var(--blue-dark);
}

.value-icon:hover {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Story Section */
.story {
    background-color: var(--white);
    padding: 30px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text {
    color: var(--text-color);
    line-height: 1.7;
}

.story-text h2 {
    color: var(--blue-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.story-text h2:first-child {
    margin-top: 0;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Story Highlights */
.story-highlights {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.highlight-item:nth-child(even) {
    border-left-color: var(--blue-medium);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item:nth-child(even) .highlight-icon {
    background: var(--blue-medium);
}

.highlight-icon i {
    font-size: 1rem;
    color: var(--white);
}

.highlight-content h4 {
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Story Credentials */
.story-credentials {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.story-credentials h3 {
    text-align: center;
    color: var(--blue-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.credential-item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.credential-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: var(--transition);
}

.credential-item:hover img {
    filter: grayscale(0%);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.credential-item:hover .credential-icon {
    background: var(--orange);
    transform: scale(1.1);
}

.credential-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.credential-name {
    font-size: 0.9rem;
    color: var(--blue-dark);
    font-weight: 500;
    line-height: 1.3;
}

/* Media Queries */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 90px;
        padding-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        min-width: 200px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .team-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.5rem 0.5rem;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 1rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-photo img {
        width: 140px;
        height: 140px;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}