/* ===============================
   Global Değişkenler ve Ayarlar
   =============================== */
:root {
    /* Ana renk paleti - Modern iOS Tasarım */
    --primary-color: #0A84FF;    /* Modern iOS mavi */
    --secondary-color: #30B0C7;  /* Tamamlayıcı renk */
    --accent-color: #5E5CE6;     /* Vurgu rengi */
    --text-color: #2C3E50;       /* Koyu metin rengi */
    --light-text: #FFFFFF;       /* Açık metin rengi */
    --background-light: #F8F9FA; /* Açık arka plan */
    --background-dark: #2C3E50;  /* Koyu arka plan */
    --card-bg: #FFFFFF;          /* Kart arka planı */
    --gradient-start: #0A84FF;   /* Gradyan başlangıç */
    --gradient-end: #30B0C7;     /* Gradyan bitiş */
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Sayfa geneli sıfırlama ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sayfa kaydırma davranışı */
html {
    scroll-behavior: smooth; /* Yumuşak sayfa kaydırma */
}

/* Temel tipografi ve renk ayarları */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* İçerik konteynır ayarları */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: hidden;
}

/* ===============================
   Navigasyon Çubuğu Stilleri
   =============================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.logo .platform-icons {
    margin-left: 8px;
    font-size: 1.2rem;
    color: #666;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}

/* ===============================
   Hero Bölümü Stilleri
   =============================== */
.hero {
    height: 100vh;            /* Tam ekran yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(0, 0, 0, 0.8));
    position: relative;
    padding: 0 20px;
}

/* Hero üzerindeki yarı saydam katman */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Yarı saydam siyah */
    z-index: 1;
}

/* Hero içerik stilleri */
.hero-content {
    position: relative;
    z-index: 2;              /* Overlay üzerinde görünmesi için */
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Metin gölgesi */
}

.hero-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* İletişim butonu */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px); /* Hover'da yukarı hareket */
}

/* ===============================
   Hakkımda Bölümü Stilleri
   =============================== */
.about {
    padding: 4rem 0;
    background: var(--background-light);
    overflow-x: hidden;
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Giriş Metni */
.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* Başarı Satırları */
.achievement-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

/* Resim Stilleri */
.achievement-image {
    flex: 0 0 150px; /* Sabit genişlik */
    height: 150px; /* Kare format için aynı yükseklik */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.compact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.achievement-row:hover .compact-image {
    transform: scale(1.08);
}

/* Metin Stilleri */
.achievement-text {
    flex: 1;
    min-width: 0; /* Taşmayı önlemek için */
}

.achievement-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.achievement-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Teknoloji Stack */
.skills-showcase {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    margin-top: 1rem;
}

.skills-showcase h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.tech-icons.animated {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tech-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.tech-icon:hover i {
    transform: translateY(-3px);
}

.tech-icon span {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Slide Animasyonları */
.slide-in {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in.from-left {
    transform: translateX(-50px);
}

.slide-in.from-right {
    transform: translateX(50px);
}

.slide-in.from-bottom {
    transform: translateY(30px);
}

.slide-in.visible {
    opacity: 1;
    transform: translate(0);
    visibility: visible;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .achievement-row {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .achievement-image {
        width: 150px; /* Mobilde de aynı boyut */
        height: 150px;
        margin: 0 auto;
    }

    .achievement-text h3 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .achievement-row {
        padding: 1rem;
    }

    .achievement-text h3 {
        font-size: 1.1rem;
    }

    .achievement-text p {
        font-size: 0.9rem;
    }

    .skills-showcase {
        padding: 1.5rem;
    }

    .tech-icon i {
        font-size: 1.8rem;
    }
}

/* Özel Scroll Bar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===============================
   Yetenekler Bölümü Stilleri
   =============================== */
.skills {
    padding: 6rem 0;
    background: var(--background-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Yetenek kartları */
.skill-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skill-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 1rem 0;
}

.skill-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.skill-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===============================
   Blog Bölümü Stilleri
   =============================== */
.blog {
    padding: 5rem 0;
    background: var(--background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Blog kartları */
.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.read-more i {
    font-size: 0.8rem;
}

/* ===============================
   Tecrübeler Bölümü Stilleri
   =============================== */
.experience {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.experience h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #007bff;
}

.timeline-item {
    position: relative;
    margin: 20px 0;
    padding-left: 60px;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    padding-left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #007bff;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #007bff;
}

.timeline-content .company {
    font-weight: bold;
    color: #555;
}

.timeline-content .date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    color: #333;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 40px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }
}

/* ===============================
   İletişim Bölümü Stilleri
   =============================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%230A84FF" fill-opacity="0.05"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.contact-description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Contact Info Styles */
.contact-info {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 132, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(10, 132, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--primary-color);
    color: white;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.contact-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Styles */
.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(10, 132, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 132, 255, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .contact-item-content h4 {
        font-size: 1rem;
    }

    .contact-item-content p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===============================
   Footer Stilleri
   =============================== */
.footer {
    background: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* ===============================
   Responsive Tasarım
   =============================== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-info {
        padding-right: 0;
    }

    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobil menü gizleme */
    .nav-links {
        display: none;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
    }

    .tech-icons {
        gap: 1.5rem;
    }

    .tech-icons i {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===============================
   Bölüm Başlıkları
   =============================== */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Sağ taraf - Görseller */
.image-gallery {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-color);
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-strip {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.gallery-thumb:hover, .gallery-thumb.active {
    opacity: 1;
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Teknoloji Stack */
.tech-stack {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.tech-stack h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-icons i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.tech-icons i:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

/* Başarı Sayaçları */
.achievements-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.counter-item {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.counter-item p {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-info {
        padding-right: 0;
    }

    .achievements-counter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-strip {
        overflow-x: auto;
        padding: 1rem;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }

    .achievements-counter {
        grid-template-columns: 1fr;
    }

    .counter-item {
        padding: 1.5rem;
    }
}

/* ===============================
   Projelerim Bölümü Stilleri
   =============================== */
.projects {
    padding: 6rem 0;
    background: var(--card-bg);
    overflow-x: hidden;
}

.projects h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--secondary-color);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for projects */
@media (max-width: 768px) {
    .projects {
        padding: 4rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 180px;
    }
}

/* Animasyon Stilleri */
.slide-in {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in.from-left {
    transform: translateX(-100px);
}

.slide-in.from-right {
    transform: translateX(100px);
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    /* Navigation Bar Mobile */
    .navbar {
        height: 60px;
    }

    .nav-content {
        height: 60px;
        padding: 0 0.8rem;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .logo .platform-icons {
        gap: 0.3rem;
    }

    .logo .platform-icons i {
        font-size: 1rem;
    }

    .menu-btn {
        padding: 0.3rem;
    }

    .menu-btn i {
        font-size: 1.3rem;
    }

    .nav-links {
        width: 85%;
        padding: 70px 1.5rem 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem;
        margin-bottom: 0.3rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 120px 1rem 2rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* About Section Mobile */
    .about {
        padding: 4rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-info {
        padding: 1.5rem;
    }

    .about-info h2 {
        font-size: 1.8rem;
    }

    .about-info p {
        font-size: 0.95rem;
    }

    .achievement-box {
        padding: 1.2rem;
    }

    .achievement-box h3 {
        font-size: 1.1rem;
    }

    .achievement-box p {
        font-size: 0.9rem;
    }

    .about-visuals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .visual-item {
        height: 200px;
    }

    .tech-stack {
        gap: 0.5rem;
    }

    .tech-stack i {
        font-size: 1.2rem;
    }

    /* Projects Section Mobile */
    .projects {
        padding: 4rem 1rem;
    }

    .projects h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        margin: 0 0.5rem;
    }

    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 1.2rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }

    .project-content p {
        font-size: 0.9rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    /* Skills Section Mobile */
    .skills {
        padding: 4rem 1rem;
    }

    .skills h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .skill-card {
        padding: 1.2rem;
    }

    .skill-card i {
        font-size: 1.5rem;
    }

    .skill-card h3 {
        font-size: 1.1rem;
    }

    .skill-card p {
        font-size: 0.9rem;
    }

    /* Blog Section Mobile */
    .blog {
        padding: 4rem 1rem;
    }

    .blog h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0 0.5rem;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    /* Experience Section Mobile */
    .experience {
        padding: 4rem 1rem;
    }

    .experience h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 1.2rem;
    }

    .experience-card h3 {
        font-size: 1.1rem;
    }

    .experience-card .company {
        font-size: 0.9rem;
    }

    .experience-card .date {
        font-size: 0.8rem;
    }

    .experience-card p {
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 4rem 1rem;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .nav-links {
        width: 100%;
    }

    .project-card,
    .blog-card {
        margin: 0;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Sosyal Medya İkonları */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(10, 132, 255, 0.1);
}

.social-links h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.3);
}

/* Responsive tasarım için sosyal medya ikonları */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Dil Seçici Stilleri */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.lang-btn img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-btn span {
    display: none;
}

/* Navbar içindeki düzenlemeler */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Mobil cihazlar için düzenlemeler */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 10px;
    }

    .language-selector {
        gap: 6px;
    }

    .lang-btn img {
        width: 20px;
        height: 14px;
    }
}