/* Hakkımızda Sayfası Stilleri */

/* Hero Section */
.about-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 15s infinite;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hakkımızda İçerik */
.about-content {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Değerlerimiz */
.values-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-item:hover {
    transform: translateY(-15px);
}

.value-item:hover::before {
    opacity: 0.1;
}

.value-item i {
    font-size: 3rem;
    color: #f88414;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.value-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    color: #f88414;
}

.value-item p {
    color: #666;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* Ekip */
.team-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-member:hover {
    transform: translateY(-15px);
}

.team-member:hover::before {
    opacity: 0.1;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #e0e7ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image i {
    font-size: 5rem;
    color: #f88414;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    color: #f88414;
}

.team-member p {
    color: #666;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        order: -1;
    }

    .team-member {
        min-width: 200px;
        padding: 1.5rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .member-image i {
        font-size: 3.5rem;
    }

    .value-item {
        min-width: 200px;
        padding: 1.5rem;
    }

    .value-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .logo-main {
        display: none !important;
    }

    .logo-mini {
        display: inline-block !important;
    }
}

/* Page Header */
.page-header {
    background: #f8fafd;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

/* About Detailed Section */
.about-detailed {
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.member-image i {
    font-size: 3rem;
    color: #153362;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #f88414;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #555;
    font-size: 0.9rem;
}

.values-section {
    padding: 4rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.value-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item i {
    font-size: 2rem;
    color: #153362;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #f88414;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #555;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(45deg, #f88414, #ffaa5e);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background: #fff;
    color: #f88414;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #eee;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
    .header-social-fixed {
        top: 10px;
        right: 40px;
        transform: scale(0.6);
    }
}

/* Masaüstünde menü öğelerini gizle */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important; /* Masaüstünde nav linklerini göster */
    }
} 