/* ========== ABOUT-US.CSS - SADECE ABOUT US İÇERİĞİ İÇİN ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000;
    color: #fff;
    padding-top: 56px; /* Header için boşluk */
}

/* Main Content */
.main-content {
    padding: 0;
    max-width: none;
    margin: 0;
}

/* About Header */
.about-header {
    text-align: center;
    padding: 40px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Founder Section */
.founder-section {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.founder-photo {
    margin-bottom: 24px;
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.founder-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 18px;
    color: #3b82f6;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founder-email {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.founder-email a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.founder-email a:hover {
    color: #3b82f6;
}

.founder-email i {
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 80px 0 60px;
    padding: 0 24px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e5e5ff;
    line-height: 1.3;
    margin-bottom: 32px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom .social-icons {
    margin-bottom: 12px;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #aaa;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .about-title {
        font-size: 32px;
    }

    .founder-section {
        padding: 60px 24px;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .founder-img {
        width: 100px;
        height: 100px;
    }

    .founder-name {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}