/* GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ÖZEL İMLEÇ */
.cursor {
    width: 8px;
    height: 8px;
    background-color: #e63946;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-trail {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(230, 57, 70, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: left 0.15s ease-out, top 0.15s ease-out;
}

/* NAVBAR (Modern Cam Efekti) */
header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: #fff;
}

.nav-logo .dot {
    color: #e63946;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
    color: #e63946;
    transform: translateY(-2px);
}

.nav-socials {
    display: flex;
    gap: 20px;
}

.nav-socials a {
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.nav-socials a:hover {
    color: #e63946;
    transform: scale(1.2);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: 0.4s;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-tag {
    font-size: 0.8rem;
    color: #e63946;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-name {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-name span.italic {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto 40px;
}

/* BUTONLAR */
.btn-primary {
    padding: 15px 35px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: 0.4s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #c12a35;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    transform: translateY(-5px);
}

.btn-ghost {
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: 0.4s;
    margin-left: 15px;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: #e63946;
    background-color: rgba(230, 57, 70, 0.1);
    transform: translateY(-5px);
}

/* AI CHATBOT */
#ai-chat-toggle {
    position: fixed; bottom: 30px; right: 30px;
    width: 65px; height: 65px; border-radius: 50%;
    background-color: #e63946; color: #fff;
    border: none; cursor: pointer; font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
    z-index: 2000; transition: 0.3s;
}

#ai-chat-toggle:hover { transform: scale(1.1); }

#ai-chat-container {
    position: fixed; bottom: 110px; right: 30px;
    width: 360px; background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px); border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none; flex-direction: column; z-index: 2000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.ai-chat-header {
    background: #e63946; color: white; padding: 20px;
    border-radius: 25px 25px 0 0; display: flex; justify-content: space-between;
}

#ai-chat-body { height: 350px; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px; }

.ai-message { background: rgba(255, 255, 255, 0.05); padding: 12px 18px; border-radius: 15px 15px 15px 0; align-self: flex-start; max-width: 85%; }

.user-message { background: #e63946; padding: 12px 18px; border-radius: 15px 15px 0 15px; align-self: flex-end; max-width: 85%; }

.ai-chat-footer { padding: 20px; display: flex; gap: 10px; border-top: 1px solid rgba(255, 255, 255, 0.05); }

.ai-chat-footer input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: white; padding: 12px 20px; border-radius: 50px; font-family: inherit; }

/* ============================================
   MERKEZİ MODERN KART & PARLAMA (GLOW) SİSTEMİ
   ============================================ */

.glow-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* Üst Kırmızı Çizgi Efekti (Beceriler sayfasından) */
.glow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #e63946, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

/* Fare Takip Parlama Efekti */
.glow-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(230, 57, 70, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.glow-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    background: rgba(230, 57, 70, 0.04);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.glow-card:hover::after {
    opacity: 1;
}

/* ============================================
   SAYFA ORTAK STİLLER
   ============================================ */

.page-wrapper {
    min-height: calc(100vh - 80px);
    padding: 80px 20px;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 70px;
    position: relative;
}

.page-header-label {
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header h1 .highlight {
    color: #e63946;
}

.page-header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e63946, transparent);
    border-radius: 2px;
}

/* ============================================
   HAKKIMDA BÖLÜMÜ / SAYFASI
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

.about-info-card {
    /* glow-card sınıfı ile desteklenir */
}

.about-info-card h3 {
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.about-interests {
    margin-top: 60px;
}

.about-interests h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.interest-card {
    text-align: center;
    padding: 24px 20px;
}

.interest-card i {
    font-size: 1.8rem;
    color: #e63946;
    margin-bottom: 12px;
    display: block;
}

.interest-card span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   BECERİLER BÖLÜMÜ
   ============================================ */

.skills-section-title {
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.skills-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.skills-category {
    margin-bottom: 60px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #e63946;
    flex-shrink: 0;
    transition: background 0.3s;
}

.skill-card:hover .skill-icon {
    background: rgba(230, 57, 70, 0.2);
}

.skill-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.skill-card-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.skill-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: #e63946;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.tool-badge {
    padding: 15px;
    text-align: center;
    border-radius: 18px;
}

.tool-badge i {
    font-size: 1.4rem;
    color: #e63946;
    margin-bottom: 8px;
    display: block;
}

.tool-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   DENEYİM BÖLÜMÜ (Timeline)
   ============================================ */

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 15px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #e63946;
    border-radius: 50%;
    box-shadow: 0 0 15px #e63946;
    z-index: 2;
}

.timeline-card {
    /* glow-card sınıfı ile desteklenir */
}

.timeline-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.timeline-date {
    font-size: 0.8rem;
    color: #e63946;
    font-weight: 700;
}

.timeline-badge {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-card h4 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: 4px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   EĞİTİM BÖLÜMÜ
   ============================================ */

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.edu-card {
    /* glow-card sınıfı ile desteklenir */
}

.edu-icon {
    font-size: 1.8rem;
    color: #e63946;
    margin-bottom: 20px;
}

.edu-date {
    font-size: 0.8rem;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 10px;
}

.edu-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.edu-card h4 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
}

.edu-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   PROJELER BÖLÜMÜ
   ============================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #e63946;
    transition: 0.3s;
}

.project-card:hover .project-icon {
    background: #e63946;
    color: #fff;
    transform: rotate(-10deg);
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.project-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.project-link-hint {
    margin-top: auto;
    font-size: 0.8rem;
    color: #e63946;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.project-card:hover .project-link-hint {
    opacity: 1;
    gap: 15px;
}

/* ============================================
   İLETİŞİM BÖLÜMÜ
   ============================================ */

.contact-form-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #e63946;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.1);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-name { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-name { font-size: 2.8rem; }
    .page-header h1 { font-size: 2.5rem; }
}

/* ============================================
   RESPONSIVE & TAŞMA KONTROLÜ (GÜNCELLEME)
   ============================================ */

/* Tüm görseller için taşma koruması */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sayfa genelinde taşmayı engelle */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* AI Chatbot Responsive Ayarları */
@media (max-width: 576px) {
    #ai-chat-container {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 100px;
        height: 70vh;
    }
    
    #ai-chat-body {
        height: calc(100% - 130px);
    }

    .hero-name {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn-ghost {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}

/* Hamburger Menü Mobilde Açıkken Sayfa Kaymasını Engelle */
body.menu-open {
    overflow: hidden;
}

/* Mobil Menü Stili (Hamburger aktifken) */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px;
        gap: 30px;
        z-index: 999;
        animation: slideDown 0.4s ease forwards;
    }

    .nav-links a {
        font-size: 1.5rem;
        text-align: center;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
/* --- YUNUS BARIŞ PORTFOLYO ETKİLEŞİM PAKETİ (GÜNCELLENMİŞ CSS) --- */

/* 1. Preloader Stilleri */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; background-color: #0a0a0a;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1; visibility: visible;
}

/* Preloader Gizlendiğinde */
#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    border: 4px solid rgba(230, 57, 70, 0.1);
    border-top: 4px solid #e63946; /* Sitenizin ana kırmızı rengi */
    border-radius: 50%; width: 50px; height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* 2. Lightbox Stilleri */
.lightbox {
    display: none; position: fixed; z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center; align-items: center;
}
.lightbox.active { display: flex !important; }
.lightbox-content { 
    max-width: 90%; max-height: 85%; border-radius: 8px; 
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.close-button { 
    position: absolute; top: 20px; right: 30px; color: #fff; 
    font-size: 50px; cursor: pointer; transition: 0.3s;
}
.close-button:hover { color: #e63946; }

/* 3. Paralaks Stilleri */
.parallax-section {
    height: 450px; background-attachment: fixed;
    background-position: center; background-repeat: no-repeat; background-size: cover;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.parallax-section::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); z-index: 1;
}
.parallax-container { position: relative; z-index: 2; color: white; text-align: center; padding: 20px; }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .lightbox-content { max-width: 95%; max-height: 75%; }
    .close-button { top: 10px; right: 20px; font-size: 40px; padding: 10px; }
    .parallax-section { background-attachment: scroll; height: 350px; }
}
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
/* MODERN HERO TASARIMI */
.modern-hero {
    height: 60vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, #0f0f0f, #1a1a1a);
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: #e63946;
    margin: 1.5rem auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    opacity: 0.9;
    font-family: 'JetBrains Mono', monospace;
}

.hero-badges {
    margin-top: 2rem;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.badge {
    padding: 5px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #888;
    transition: 0.3s;
}

.badge:hover {
    background: #e63946;
    color: white;
    border-color: #e63946;
}

.highlight { color: #e63946; }

/* ============================================
   MODERN VIDEO TARZINDA KAYAN ANIMASYONLAR
   ============================================ */

.parallax-container {
    position: relative;
    overflow: hidden;
}

.hero-title-animated {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b, #e63946);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subtitle-animated {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.3);
}

.subtitle-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Kayan Parçacıklar */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e63946;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }

@keyframes float-up {
    0% {
        bottom: -10px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Dinamik Arka Plan */
.parallax-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: bgShift 15s ease infinite;
    z-index: 1;
}

@keyframes bgShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -50px);
    }
}

.parallax-container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-animated {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .subtitle-animated {
        font-size: 1.3rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title-animated {
        font-size: 1.8rem;
    }
    
    .subtitle-animated {
        font-size: 1rem;
        padding: 6px 12px;
    }
}
/* ============================================
   FAVORİLEME SİSTEMİ STİLLERİ
   ============================================ */

/* Favori Butonu */
.favorite-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(230, 57, 70, 0.15);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #e63946;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    font-family: inherit;
}

.favorite-btn:hover {
    background: rgba(230, 57, 70, 0.25);
    border-color: #e63946;
    transform: scale(1.1);
}

.favorite-btn:active {
    transform: scale(0.95);
}

.favorite-btn.active {
    background: #e63946;
    color: #fff;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
    border-color: #e63946;
}

.favorite-btn.active:hover {
    background: #c12a35;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.8);
}

/* Favori Bölümü */
.favorites-section {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.favorites-header {
    margin-bottom: 50px;
}

.favorites-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.favorites-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Boş Favori Durumu */
.favorites-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.favorites-empty i {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.favorites-empty p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Favori Grid */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    animation: fadeInUp 0.6s ease-out both;
}

.favorites-grid .project-card {
    animation: scaleIn 0.4s ease-out;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Temizle Butonu */
.clear-favorites-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: #e63946;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
}

.clear-favorites-btn:hover {
    background: rgba(230, 57, 70, 0.2);
    border-color: #e63946;
    transform: translateX(5px);
}

.clear-favorites-btn:active {
    transform: translateX(2px);
}

/* Favori Sayacı */
.favorites-counter {
    display: inline-block;
    background: #e63946;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
    animation: pulse 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Proje Kartı Ayarlaması */
.project-card {
    position: relative;
}

.project-card .project-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .favorites-header h2 {
        font-size: 2rem;
    }

    .favorites-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .favorite-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .favorites-header h2 {
        font-size: 1.5rem;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
    }

    .favorites-empty p {
        font-size: 1rem;
    }

    .clear-favorites-btn {
        width: 100%;
        justify-content: center;
    }
}

