﻿/* ============================================================
   🎯 HAKKIMDA BÖLÜMÜ – PROFESYONEL ANİMASYONLU TASARIM
============================================================ */

.about-wrapper {
    background-color: #fff;
    min-height: 100vh; /* Ekran boyu kadar yer kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 120px 20px;
    position: relative;
}

.about-section {
    max-width: 950px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* 🔹 Başlık */
.about-title {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .about-title span {
        color: #c65a2e;
    }

.about-subtitle {
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-top: 5px;
    margin-bottom: 25px;
    border-bottom: 3px solid #c65a2e;
    display: inline-block;
    padding-bottom: 5px;
}

/* 🔹 Açıklama */
.about-text {
    font-family: 'Muli', sans-serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInText 1.3s ease forwards;
    animation-delay: 0.6s;
}

/* 🔹 Sosyal Medya */
.about-social {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInIcons 1.3s ease forwards;
    animation-delay: 1.2s;
}

    .about-social a {
        color: #c65a2e;
        font-size: 26px;
        transition: 0.3s ease;
        background: #f8f9fa;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

        .about-social a:hover {
            color: #fff;
            background: #c65a2e;
            transform: translateY(-6px);
        }

/* 🔹 Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInIcons {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#about {
    padding-top: 40px !important;
}

.about-section,
.resume-section-content {
    margin-top: 20px !important;
}