/*
 * Creative About Page Styles - Alkalsan Alüminyum
 * Hakkımızda sayfası için özel kreatif tasarım
 */

/* Hero Section with Animated Background */
.about-hero {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(135deg, #052331 0%, #4C4C4C 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/banner/alkalsandisgorunum.svg');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        animation: slideBackground 30s linear infinite;
    }

    .about-hero h1 {
        position: relative;
        z-index: 2;
        font-size: 42px;
        margin-bottom: 20px;
        animation: fadeInDown 1s ease-out;
        color: white;
    }

    .about-hero p {
        position: relative;
        z-index: 2;
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out 0.3s backwards;
        color: white;
        font-weight: 300;
    }

@keyframes slideBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Section */
.timeline-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #052331 0%, #4C4C4C 100%);
    }

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
    animation: fadeIn 0.8s ease-out;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
        padding-right: 40px;
    }

    .timeline-item:nth-child(even) {
        left: 55%;
        text-align: left;
        padding-left: 40px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background: #4C4C4C;
        border: 4px solid #052331;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-item:nth-child(odd)::before {
        right: -10px;
    }

    .timeline-item:nth-child(even)::before {
        left: -10px;
    }

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .timeline-content .year {
        display: inline-block;
        background: #052331;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        color: #052331;
        margin-bottom: 10px;
    }

    .timeline-content p {
        color: #666;
        font-size: 14px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, #052331 0%, #1a4456 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-10px);
        background: rgba(76, 76, 76, 0.2);
    }

    .stat-box .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
        display: block;
    }

    .stat-box .stat-label {
        font-size: 16px;
        font-weight: 300;
        color: white;
    }

/* Mission & Vision Cards */
.mission-vision-section {
    padding: 60px 20px;
    background: white;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #052331 0%, #4C4C4C 100%);
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .info-card .icon {
        font-size: 48px;
        color: #4C4C4C;
        margin-bottom: 20px;
    }

    .info-card h3 {
        color: #052331;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .info-card p {
        color: #666;
        line-height: 1.8;
        text-indent: 0;
    }

/* Team/Values Section with Icons */
.values-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .value-item:hover {
        background: #4C4C4C;
        color: white;
        transform: scale(1.05);
    }

        .value-item:hover .value-icon {
            color: white;
        }

        .value-item:hover h4 {
            color: white;
        }

        .value-item:hover p {
            color: white;
        }

.value-icon {
    font-size: 40px;
    color: #052331;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-item h4 {
    color: #052331;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-item p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
    }

        .timeline-item::before {
            left: 20px !important;
        }

    .about-hero h1 {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
    }
}
