/* Hakkımızda Sayfası Stilleri */

/* Breadcrumb Alanı */
.breadcrumb-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0;
    height: 350px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.breadcrumb-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 70px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 16px;
    position: relative;
    z-index: 2;
    justify-content: center;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-color);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--red-color);
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb .separator {
    margin: 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadcrumb .current {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hakkımızda İçerik Alanı */
.about-content {
    padding: 80px 0;
}

.about-section {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    position: relative;
    padding-bottom: 0;
}

/* Siyah çizgiyi kaldırmak için */
.section-title::after {
    display: none;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--red-color);
    margin-bottom: 25px;
    border-radius: 3px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

/* Misyon ve Vizyon */
.mission-vision {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.mission, .vision {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--red-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-box i {
    font-size: 30px;
    color: #fff;
}

.mission h3, .vision h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.7;
}

/* Değerlerimiz */
.values-section {
    flex-direction: row-reverse;
}

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

.value-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--red-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.value-icon i {
    font-size: 24px;
    color: #fff;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Ekibimiz */
.team-section {
    margin-bottom: 50px;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.member-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.position {
    color: var(--red-color);
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--red-color);
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    
    .values-section {
        flex-direction: column;
    }
    
    .mission-vision {
        flex-direction: column;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breadcrumb-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-title {
        font-size: 40px;
    }
    
    .about-content {
        padding: 50px 0;
    }
    
    .about-section {
        margin-bottom: 50px;
    }
    
    .mission-vision {
        margin-bottom: 50px;
    }
}
