﻿/* about.css - Hakkımızda Sayfası Özel Stilleri */

/* About Hero Section */
.about-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 25px;
    color: var(--text-glow);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .badge i {
        color: var(--accent-neon);
    }

    .badge:hover {
        border-color: var(--accent-neon);
        transform: translateY(-2px);
        background: rgba(0, 243, 255, 0.1);
    }

/* Floating Icons */
.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    animation: floatIcon 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

    .icon-orb:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .icon-orb:nth-child(2) {
        top: 50%;
        right: 15%;
        animation-delay: -2s;
    }

    .icon-orb:nth-child(3) {
        bottom: 20%;
        left: 20%;
        animation-delay: -4s;
    }

    .icon-orb:nth-child(4) {
        top: 30%;
        right: 25%;
        animation-delay: -6s;
    }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translateY(-10px) rotate(180deg) scale(1.05);
    }

    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 5%;
    background: var(--secondary-color);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .stat-card:hover::before {
        left: 100%;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-neon);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-glow);
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 600;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

    .stat-progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--accent-neon), var(--accent-cyan));
        animation: progressFill 2s ease-out forwards;
    }

@keyframes progressFill {
    to {
        width: 100%;
    }
}

/* Story Section */
.story-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content {
    position: relative;
}

    .story-content h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        font-family: 'Orbitron', sans-serif;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.story-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    font-style: italic;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.story-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 4px solid var(--accent-neon);
    border-radius: 0 20px 20px 0;
    position: relative;
}

    .story-quote i {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 2rem;
        color: var(--accent-neon);
        opacity: 0.3;
    }

    .story-quote blockquote {
        font-size: 1.1rem;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.6;
        padding-left: 2rem;
    }

    .story-quote cite {
        font-weight: 600;
        color: var(--accent-cyan);
        font-style: normal;
    }

/* Timeline */
.story-timeline {
    position: relative;
    padding-left: 2rem;
}

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent-neon), var(--accent-purple), var(--accent-cyan));
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -0.4rem;
        top: 0;
        width: 1rem;
        height: 1rem;
        background: var(--accent-neon);
        border-radius: 50%;
        box-shadow: 0 0 20px var(--accent-neon);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-glow);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
        background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-header p {
        font-size: 1.2rem;
        opacity: 0.8;
        max-width: 500px;
        margin: 0 auto;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .value-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--accent-neon);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-glow);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 2;
}

.value-card p {
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.value-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.value-card:hover .value-glow {
    opacity: 1;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
}

    .team-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }

.team-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(255, 0, 200, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-neon);
    border: 3px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .image-placeholder {
    transform: scale(1.1);
    border-color: var(--accent-neon);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.team-social {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    border: 1px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .team-social a:hover {
        background: var(--accent-neon);
        color: var(--primary-color);
        transform: scale(1.1);
    }

.team-info {
    padding: 2rem;
    text-align: center;
}

    .team-info h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-glow);
        font-family: 'Orbitron', sans-serif;
    }

.team-position {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.team-bio {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Partners Section */
.partners-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.partners-slider {
    position: relative;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent );
    margin-top: 3rem;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: slidePartners 30s linear infinite;
    width: max-content;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

    .partner-item:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

    .partner-item i {
        font-size: 2.5rem;
        color: var(--accent-neon);
    }

    .partner-item span {
        font-weight: 600;
        color: var(--text-glow);
    }

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-140px * 6 - 3rem * 6));
    }
}

/* CTA Section */
.about-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-neon), var(--accent-purple));
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-neon);
    border-color: var(--accent-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-timeline {
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .icon-orb {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .partner-item {
        min-width: 120px;
    }
}
