/* Hakkımızda Sayfası Özel Stilleri */
@import url('../css/style.css'); /* Ortak değişkenleri ve stilleri dahil et */

/* HERO */
.hero-about {
    height: 60vh;
    background-image: url('../img/about_hero.webp');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Değerler Bölümü */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    text-align: center;
}

.value-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Şubeler Bölümü */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.branch-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.branch-image {
    height: 200px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-content {
    padding: 25px;
    text-align: center;
}

.branch-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.branch-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
}

.branch-address {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.branch-address p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.branch-address i {
    color: var(--primary-color);
    margin-right: 8px;
}

.branch-contact {
    text-align: left;
}

.branch-contact p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.branch-contact i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.branch-contact a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.branch-contact a:hover {
    color: var(--primary-color);
}

#hakkimizda-cta {
    background-image: url('../img/implant_callaction.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

#hakkimizda-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero-about {
        height: 60vh;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Mobilde parallax performans sorunu yaşanmaması için */
    }

    .hero-about .hero-content {
        max-width: 90%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-main-content,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-main-content .image-content {
        order: -1;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .branch-card {
        margin: 0 10px;
    }

    #hakkimizda-cta {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
} 