﻿/* ============================================================
   🧭 SABİT ÜST ALAN
============================================================ */

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(120deg,#ffffff 0%,#f5f5f5 30%,#ffffff 60%,#ffffff 100%);
    background-size: 200% 100%;
    animation: shineMove 6s ease-in-out infinite;
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

@keyframes shineMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 17px;
    font-weight: 600;
}

    .top-contact i {
        margin-right: 8px;
        color: #c65a2e;
        font-size: 18px;
    }

    .top-contact a {
        color: #c65a2e;
        text-decoration: none;
        transition: 0.3s;
    }

        .top-contact a:hover {
            color: #ff6600;
            text-decoration: underline;
        }

@media (max-width:992px) {

    .fixed-header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 12px;
        text-align: center;
    }

    .top-contact {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 14px;
    }
}

body {
    padding-top: 70px;
}

/* ============================================================
   GENEL METİN STİLLERİ
============================================================ */

h1 {
    font-family: 'Saira Extra Condensed',sans-serif;
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #212529;
}

.subheading {
    font-family: 'Saira Extra Condensed',sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #343a40;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #c65a2e;
    display: inline-block;
    padding-bottom: 5px;
}

p.lead {
    font-family: 'Muli',sans-serif;
    font-size: 1.08rem;
    color: #444;
    line-height: 1.9;
    margin-top: 5px;
}

/* ============================================================
   SOSYAL MEDYA
============================================================ */

.social-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

    .social-bottom a {
        color: #c65a2e;
        font-size: 26px;
        transition: 0.3s;
        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);
    }

        .social-bottom a:hover {
            color: #fff;
            background: #c65a2e;
            transform: translateY(-4px);
        }

/* ============================================================
   HAKKIMDA
============================================================ */

.about-text {
    text-align: justify;
    font-family: 'Muli',sans-serif;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #444;
    max-width: 900px;
    margin: 10px auto 0 auto;
}

/* ============================================================
   TIMELINE (DENEYİM)
============================================================ */

.timeline-section {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20px;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom,#c65a2e,#ff8c42);
    }

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #c65a2e;
    border-radius: 50%;
}

.timeline-content {
    margin-left: 90px;
    width: calc(100% - 120px);
    background: #fafafa;
    border-radius: 14px;
    padding: 35px 45px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* ============================================================
   SAYFA HİZALAMA
============================================================ */

.resume-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    background-color: #fff;
}

/* ============================================================
   EĞİTİM TIMELINE
============================================================ */

.education-timeline {
    position: relative;
    padding-left: 40px;
}

    .education-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 20px;
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom,#c65a2e,#ff8c42);
    }

.education-dot {
    position: absolute;
    left: 12px;
    top: 10px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #c65a2e;
    border-radius: 50%;
}

.education-box {
    margin-left: 90px;
    width: calc(100% - 120px);
    background: #fafafa;
    border-radius: 14px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    margin-bottom: 50px;
}

/* ============================================================
   DİLLER
============================================================ */

.language-box {
    margin-bottom: 35px;
}

    .language-box h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

.language-bar {
    width: 100%;
    height: 12px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
}

.language-level {
    height: 100%;
    background: linear-gradient(90deg,#c65a2e,#ff8c42);
    border-radius: 20px;
}

/* ============================================================
   YETENEKLER
============================================================ */

.dev-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}

    .dev-icons .list-inline-item {
        background: white;
        border-radius: 14px;
        padding: 18px;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 14px rgba(0,0,0,0.08);
        transition: all .35s ease;
    }

    .dev-icons i {
        font-size: 32px;
        color: #6c757d;
    }

    .dev-icons .list-inline-item:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

        .dev-icons .list-inline-item:hover i {
            color: #c65a2e;
        }

/* ============================================================
   SKILLS BAR
============================================================ */

.skills-area {
    margin-top: 30px;
}

.skill-box {
    margin-bottom: 18px;
}

.skill-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.2s ease;
}

/* ============================================================
   CERTIFICATES
============================================================ */

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.certificate-card {
    background: white;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: all .35s ease;
}

    .certificate-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    }

.certificate-icon {
    font-size: 22px;
    color: #f39c12;
}

/* ============================================================
   WOW EFFECTS
============================================================ */

.timeline-content:hover,
.education-box:hover,
.contact-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14),0 0 18px rgba(198,90,46,0.25);
    transition: all .25s ease;
}

html {
    scroll-behavior: smooth;
}

.resume-section {
    transition: all .4s ease;
}

    .resume-section:hover {
        transform: translateY(-3px);
    }

/* typing */

.typing-text {
    color: #c65a2e;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.typing-wrapper {
    margin-top: -10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}
.cv-download-area {
    margin-top: 25px;
}

.cv-button {
    background: linear-gradient(45deg,#c65a2e,#ff7a3d);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .cv-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(198,90,46,0.4);
    }
.dropdown-menu {
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
    font-weight: 500;
}