/* =================================
   HAKKIMIZDA CSS - HAKKIMIZDA SAYFA STILLERI
   ================================= */

/* About Content */
.about-content {
    padding: 5rem 0;
    background: var(--white);
    /* TEST: This should make changes visible */
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.8fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--soft-coral);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-coral), var(--accent-coral));
    border-radius: 2px;
}

.about-text {
    padding-right: 2rem;
    max-width: none;
}

.about-description {
    color: var(--gray-700);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 100%;
}

.about-image {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-left: 2rem;
}

.image-placeholder {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.image-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 25px;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.image-placeholder p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    letter-spacing: 0.5px;
}

/* Decorative elements */
.about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-coral), var(--soft-coral));
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.about-image::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 50px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-rose), var(--accent-coral));
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}



/* Team Section */
.team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.team .section-subtitle {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(228, 160, 122, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-coral), var(--accent-coral), var(--primary-rose));
    border-radius: 20px 20px 0 0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--soft-coral);
}

.member-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.member-image .image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-coral), var(--accent-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(228, 160, 122, 0.3);
    transition: all 0.3s ease;
}

.member-image .image-placeholder i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.team-member:hover .member-image .image-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(228, 160, 122, 0.4);
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: var(--soft-coral);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.member-role::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-coral);
    border-radius: 2px;
}

.member-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team member specialties */
.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.specialty-tag {
    background: rgba(228, 160, 122, 0.1);
    color: var(--soft-coral);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(228, 160, 122, 0.2);
}

/* Stats Section - Hakkımızda sayfasına özel */
.stats {
    padding: 4rem 0;
    background: #2c1810;

    color: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stats .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--soft-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
        max-width: 100%;
    }
    
    .about-image {
        order: 1;
        justify-content: center;
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .image-placeholder {
        height: 280px;
        max-width: 450px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats .stat-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-container,
    .values-container,
    .team-container,
    .stats-container {
        padding: 0 1rem;
    }
    
    .about-content,
    .team {
        padding: 3rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-image .image-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .member-image .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .image-placeholder {
        max-width: 300px;
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
    
    .image-placeholder p {
        font-size: 1.1rem;
    }
    
    .member-image .image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stats .stat-number {
        font-size: 2.5rem;
    }
    
    .stats .stat-label {
        font-size: 1rem;
    }
}
