@charset "UTF-8";
/*
* MEFAMEX WEBSITE (https://mefamex.com/) 
* Generated by Mefamex  
* Created on  : 2024-09-01
* Last update : 2025-08-08-T00:00:00Z
* Copyright 2024 Mefamex 
* Licensed under MIT (https://github.com/Mefamex/) 
* This css file is for the cv page of the Mefamex website.
* Title : style.css
*/



:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #ff6b35;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-sm: 0 0.125rem 0.625rem rgba(0, 212, 255, 0.1);
    --shadow-md: 0 0.5rem 1.875rem rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
}

main {
    width: 100%;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-wrap: anywhere;
    max-width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

main * {
    margin: 0;
    padding: 0;
}

/* Animated Background */
main .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--gradient-bg);
}

main .bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 0%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 100, 0.05) 0%, transparent 36%),
        radial-gradient(circle at 40% 40%, rgba(0, 153, 204, 0.06) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(1deg);
    }

    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* 
*
*
*
*
*
*/

/* main-header Section */
main .main-header {
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(95, 0, 0, 0.187) 0%, rgba(0, 174, 255, 0.352) 100%);
    border-bottom: 3px solid #393939;
}

main .main-header #head-background {
    position: absolute;
    display: flex;
    flex-direction: row;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    opacity: 0.1;
    overflow: hidden;
    -webkit-user-select: none;
    pointer-events: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

main .main-header #head-back-img {
    object-fit: contain;
    width: auto;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 80%, transparent 100%);
}


main .main-header #head-back-img-2 {
    object-fit: contain;
    width: auto;
    height: 100%;
    margin-inline: auto;
}

main .main-header .hero-container {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 2rem;
}

main .main-header .hero-container .hero-content {
    max-width: 46rem;
    flex: 10 1 30rem;
    margin-inline: auto;
}

main .main-header .hero-container .hero-visual {
    max-width: 28rem;
    flex: 1 1 22rem;
    margin-inline: auto;
}

main .main-header .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: -1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

main .main-header .hero-content .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

main .main-header .hero-content .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-block: 2rem;
    line-height: 1.35;
    animation: slideInLeft 1s ease-out 2s backwards;
}

main .main-header .hero-content .description br {
    line-height: 2;
}

main .main-header .hero-content .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 3s backwards;
}

main .main-header .hero-content .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 12rem;
    text-align: center;
    justify-content: center;
}

main .main-header .hero-content .contact-item *:not(a) {
    cursor: default;
}

main .main-header .hero-content .contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

main .main-header .hero-content .contact-item a {
    color: var(--text-primary);
    text-decoration: none;
}

main .main-header .hero-container .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideInRight 1s ease-out backwards;
}

main .main-header .profile-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

main .main-header .profile-avatar {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #00eeff, #000000);
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    padding: 0.2rem;
}


main .main-header .profile-avatar::before {
    content: 'MEFAMEX';
    position: absolute;
    background: var(--bg-dark);
    width: 90%;
    height: 90%;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .main-header .profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0.2rem;
    position: relative;
    -webkit-user-select: none;
    pointer-events: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

main .main-header .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

main .main-header .social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

main .main-header .social-link:hover {
    background: var(--gradient-primary);
    transform: scale(1.2) translateY(-0.3rem);
    box-shadow: var(--shadow-lg);
}

main .main-header .social-link img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    filter: invert(1);
}

/* 
*
*
*
*
*
*/


/* Main Content */
.main-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 2rem;
}

main .section {
    margin-bottom: 8rem;
    animation: fadeInUp 0.8s ease-out;
}

main .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

main .card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

main .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

main .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

main .card:hover::before {
    transform: scaleX(1);
}

main .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

main .card p, main .card li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

main .card ul {
    list-style: none;
    padding-left: 0;
}

main .card li {
    position: relative;
    padding-left: 1.5rem;
}

main .card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Skills Section */
main .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

main .skill-category {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

main .skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

main .skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

main .skill-name {
    font-weight: 600;
    color: var(--text-primary);
}

main .skill-level {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Timeline */
main .timeline {
    position: relative;
    padding-left: 2rem;
}

main .timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

main .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    margin-left: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

main .timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 2.4rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 3px solid var(--bg-dark);
}

main .timeline-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

main .timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    width: fit-content;
    display: inline-block;
}

main .timeline-company {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
    display: inline-block;
}

/* Programming Languages Showcase */
main .languages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

main .language-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

main .language-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

main .language-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

main .language-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

main .language-years {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

main .language-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 40rem) {
    main {
        margin-top: -2rem;
    }

    main .main-header #head-background {
        justify-content: center;
        padding-top: 27rem;
    }

    main .main-header #head-back-img {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 65%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 65%, transparent 100%);
        width: 100%;
        object-fit: cover;
    }

    main .main-header #head-back-img-2 {
        display: none;
    }

    main .contact-info {
        justify-content: space-between !important;
    }

    main .contact-item {
        font-size: 0.8em;
        padding: 0.6rem 1rem !important;
        min-width: 45% !important;
    }

    /* for performance */
    main .profile-card,
    main .card,
    main .skill-category,
    main .timeline-item,
    main .language-card {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: rgb(26, 26, 26) !important;
    }

    main .bg-animation::before {
        animation: none;
    }

    /*
    *
    */

    main .main-content {
        padding: 2rem 1rem;
    }

    main .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    main .contact-info {
        justify-content: center;
    }

    main .cards-grid {
        grid-template-columns: 1fr;
    }

    main .skills-grid {
        grid-template-columns: 1fr;
    }

    main .languages-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    main .timeline {
        padding-left: 1rem;
    }

    main .timeline-item {
        margin-left: 1rem;
    }

    main .timeline-item::before {
        left: -2.5rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/*
*
*
*
*
*
*
*/

/***************
*  PERFORMANCE OPTIMIZATIONS
***************/

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
    }

    .bg-animation::before {
        animation: none;
    }
}

/* GPU katmanı optimizasyonu */
.profile-card,
.card,
.language-card {
    will-change: auto;
    transform: translateZ(0);
}