/* ===== GENEL STILLER ===== */
:root {
    /* Dark Mode (Varsayılan) */
    --primary: #4f46e5; /* Indigo */
    --primary-rgb: 79, 70, 229;
    --primary-dark: #4338ca;
    --secondary: #06b6d4; /* Cyan */
    --secondary-rgb: 6, 182, 212;
    --accent: #ec4899; /* Pink */
    --accent-rgb: 236, 72, 153;
    --bg: #0f172a; /* Slate 900 */
    --bg-light: #1e293b; /* Slate 800 */
    --bg-lighter: #334155; /* Slate 700 */
    --text: #f8fafc; /* Slate 50 */
    --text-light: #cbd5e1; /* Slate 300 */
    --text-lightest: #94a3b8; /* Slate 400 */
    --card-bg: #1e293b; /* Slate 800 */
    --border: #334155; /* Slate 700 */
    --shadow: rgba(2, 6, 23, 0.7);
    --code-bg: #0f172a; /* Slate 900 */
    --terminal-bg: #020617; /* Slate 950 */
    --terminal-header: #1e293b; /* Slate 800 */
    --terminal-text: #f8fafc; /* Slate 50 */
    --editor-bg: #1e293b; /* Slate 800 */
    --editor-line: #334155; /* Slate 700 */
    --editor-text: #f8fafc; /* Slate 50 */
    --selection: rgba(79, 70, 229, 0.2);
    --gradient-1: linear-gradient(120deg, #4f46e5, #06b6d4);
    --gradient-2: linear-gradient(120deg, #ec4899, #8b5cf6);
    --gradient-3: linear-gradient(120deg, #8b5cf6, #06b6d4);
}

[data-theme="light"] {
    /* Light Mode */
    --primary: #4f46e5; /* Indigo */
    --primary-rgb: 79, 70, 229;
    --primary-dark: #4338ca;
    --secondary: #06b6d4; /* Cyan */
    --secondary-rgb: 6, 182, 212;
    --accent: #ec4899; /* Pink */
    --accent-rgb: 236, 72, 153;
    --bg: #f8fafc; /* Slate 50 */
    --bg-light: #f1f5f9; /* Slate 100 */
    --bg-lighter: #e2e8f0; /* Slate 200 */
    --text: #0f172a; /* Slate 900 */
    --text-light: #334155; /* Slate 700 */
    --text-lightest: #64748b; /* Slate 500 */
    --card-bg: #ffffff;
    --border: #cbd5e1; /* Slate 300 */
    --shadow: rgba(15, 23, 42, 0.1);
    --code-bg: #f8fafc; /* Slate 50 */
    --terminal-bg: #f8fafc; /* Slate 50 */
    --terminal-header: #f1f5f9; /* Slate 100 */
    --terminal-text: #0f172a; /* Slate 900 */
    --editor-bg: #f8fafc; /* Slate 50 */
    --editor-line: #e2e8f0; /* Slate 200 */
    --editor-text: #0f172a; /* Slate 900 */
    --selection: rgba(79, 70, 229, 0.1);
    --gradient-1: linear-gradient(120deg, #4f46e5, #06b6d4);
    --gradient-2: linear-gradient(120deg, #ec4899, #8b5cf6);
    --gradient-3: linear-gradient(120deg, #8b5cf6, #06b6d4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
    background-color: var(--selection);
    color: var(--primary);
}

/* Scrollbar özelleştirme */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* ===== GENEL SINIFLAR ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-number {
    color: var(--primary);
    font-family: 'Fira Code', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    margin-right: 10px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-right: 20px;
}

.title-line {
    flex: 1;
    height: 1px;
    background-color: var(--border);
}

.highlight {
    color: var(--primary);
    font-weight: 500;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn i {
    font-size: 0.9rem;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.simple-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-lighter);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite alternate;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    bottom: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.header-text {
    flex: 1;
    z-index: 2;
}

.header-intro {
    max-width: 600px;
}

.greeting-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.greeting-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.9rem;
}

.greeting {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

.name {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
    letter-spacing: -1px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.header-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.header-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-lighter);
    color: var(--text);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

.header-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Card */
.hero-card {
    width: 100%;
    max-width: 500px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px var(--shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px -15px var(--shadow);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

.hero-card-header {
    background: var(--bg-lighter);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-card-buttons {
    display: flex;
    gap: 8px;
}

.hero-card-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.hero-card-button.red {
    background: #ff5f56;
}

.hero-card-button.yellow {
    background: #ffbd2e;
}

.hero-card-button.green {
    background: #27c93f;
}

.hero-card-title {
    color: var(--text-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.hero-card-body {
    padding: 20px;
    background: var(--code-bg);
    max-height: 400px;
    overflow-y: auto;
}

.code-block {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 5px;
    white-space: pre;
}

.indent {
    padding-left: 20px;
}

.indent-2 {
    padding-left: 40px;
}

.code-keyword {
    color: #ff79c6;
}

.code-variable {
    color: #bd93f9;
}

.code-operator {
    color: #ff79c6;
}

.code-punctuation {
    color: #f8f8f2;
}

.code-property {
    color: #8be9fd;
}

.code-string {
    color: #f1fa8c;
}

.code-function {
    color: #50fa7b;
}

.code-comment {
    color: #6272a4;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--text-light);
    border-right: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrows 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .header-text {
        order: 2;
    }
    
    .header-visual {
        order: 1;
    }
    
    .greeting-line {
        justify-content: center;
    }
    
    .name {
        font-size: 3.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description {
        max-width: 100%;
    }
    
    .header-buttons, .header-socials {
        justify-content: center;
    }
    
    .hero-card {
        transform: none;
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .name {
        font-size: 2.8rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .hero-card {
        max-width: 100%;
    }
    
    .hero-card-body {
        padding: 15px;
    }
    
    .code-block {
        font-size: 0.8rem;
    }
}

/* ===== ABOUT ===== */
.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-visual {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.skills-container {
    margin-top: 40px;
}

.skills-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.skill-category h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: var(--bg-lighter);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-3px);
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-container img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%) contrast(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-image-container:hover img {
    filter: grayscale(0%) contrast(1);
}

.about-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 8px;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-image-container:hover .about-image-bg {
    top: 15px;
    left: 15px;
}

/* Profil Fotoğrafı Son Düzenlemeler */
.about-intro {
    margin-bottom: 40px;
}

.profile-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.profile-photo {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 4px solid var(--bg-light);
    z-index: 1;
}

.profile-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--primary);
    border-radius: 16px;
    opacity: 0.6;
    z-index: 2;
}

.profile-photo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(var(--primary-rgb), 0.2) 0%,
        rgba(var(--primary-rgb), 0) 50%,
        rgba(var(--secondary-rgb), 0.2) 100%
    );
    transform: rotate(30deg);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Dekoratif arka plan elementleri */
.profile-photo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 12px;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(30deg);
}

.profile-photo-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    opacity: 0.15;
    z-index: 0;
    transform: rotate(45deg);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    z-index: 0;
}

.profile-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 25px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;
}

.profile-name-overlay {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover Efektleri */
.profile-photo:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.5);
}

.profile-photo:hover img {
    transform: scale(1.1);
}

.profile-photo:hover::after {
    opacity: 0.8;
    transform: rotate(35deg);
}

.profile-photo:hover .profile-photo-overlay {
    transform: translateY(0);
}

.about-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-bio p {
    margin-bottom: 15px;
}

.about-bio strong {
    color: var(--primary);
    font-weight: 600;
}

/* ===== PROJECTS ===== */
.projects {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(var(--primary-rgb), 0.05), transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(var(--secondary-rgb), 0.05), transparent 40%);
    pointer-events: none;
}

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

.project-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -15px var(--shadow);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover::after {
    transform: scaleX(1);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--bg-rgb), 0.9), rgba(var(--bg-rgb), 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.project-card:hover .project-link {
    transform: translateY(0);
    opacity: 1;
}

.project-card:hover .project-link:nth-child(2) {
    transition-delay: 0.1s;
}

.project-link:hover {
    background: var(--bg);
    color: var(--primary);
    transform: translateY(-5px);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.project-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-lighter);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-tag:hover {
    background: var(--primary);
    color: var(--bg);
}

.projects-more {
    text-align: center;
    margin-top: 40px;
}

/* Proje Detay Sayfası */
.project-detail-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.project-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.project-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.project-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-detail-meta i {
    color: var(--primary);
}

.project-detail-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.project-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-lighter);
    color: var(--text);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-detail-link:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-3px);
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-image {
        height: 200px;
    }
}

/* ===== CONTACT ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -15px var(--shadow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--bg);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    transform: translateY(-3px);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px -15px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text);
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label, 
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--card-bg);
    padding: 0 5px;
    color: var(--primary);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: transparent;
}

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

/* Modern Footer - Sadeleştirilmiş */
.footer {
    background-color: var(--bg-light);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--border-rgb), 0.1);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--primary);
    z-index: 0;
    pointer-events: none;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-3px);
    }
}

/* ===== TEMA DEĞİŞTİRİCİ ===== */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.theme-toggle i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(30deg);
}

/* ===== ANIMASYONLAR ===== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ===== TERMINAL STILI ===== */
.terminal-header {
    background: var(--terminal-header);
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-button.red {
    background: #ff5f56;
}

.terminal-button.yellow {
    background: #ffbd2e;
}

.terminal-button.green {
    background: #27c93f;
}

.terminal-title {
    color: var(--text-lightest);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.terminal-body {
    background: var(--terminal-bg);
    padding: 20px;
    border-radius: 0 0 8px 8px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--terminal-text);
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 10px 30px -15px var(--shadow);
}

.terminal-line {
    display: flex;
    margin-bottom: 10px;
}

.terminal-prompt {
    color: var(--primary);
    margin-right: 10px;
}

.terminal-command {
    color: var(--text);
}

.terminal-output {
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 20px;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--primary);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 5px;
}

/* ===== KOD EDITÖRÜ STILI ===== */
.code-editor {
    background: var(--editor-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px var(--shadow);
    width: 100%;
    max-width: 500px;
}

.code-editor-header {
    background: var(--bg-lighter);
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.code-editor-tabs {
    display: flex;
    gap: 2px;
}

.code-editor-tab {
    padding: 8px 15px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 4px 4px 0 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
}

.code-editor-tab.active {
    background: var(--editor-bg);
    color: var(--text);
}

.code-editor-body {
    padding: 20px;
    display: flex;
}

.line-numbers {
    color: var(--text-lightest);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-align: right;
    padding-right: 15px;
    user-select: none;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.code-content {
    flex: 1;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.code-keyword {
    color: #ff79c6;
}

.code-class {
    color: #8be9fd;
}

.code-this {
    color: #bd93f9;
}

.code-string {
    color: #f1fa8c;
}

.code-function {
    color: #50fa7b;
}

.code-comment {
    color: #6272a4;
}

/* Timeline Stili */
.timeline-container {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px var(--shadow);
    transition: all 0.3s ease;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.timeline-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(var(--primary-rgb), 0.05);
}

.timeline-tabs {
    display: flex;
    gap: 15px;
}

.timeline-tab {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.timeline-tab i {
    font-size: 1.2rem;
}

.timeline-tab.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.timeline-content {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
    max-height: 500px;
}

.timeline-section {
    display: none;
}

.timeline-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-item-icon {
    position: absolute;
    left: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(var(--primary-rgb), 0.3);
}

.timeline-item-meta {
    margin-left: 15px;
}

.timeline-item-date {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-item-body {
    padding-bottom: 20px;
}

.timeline-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.timeline-item-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.timeline-item-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.timeline-tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--bg-lighter);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.timeline-tag:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-2px);
}

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

/* Proje Detay Sayfası Stilleri */
.project-detail {
    padding-top: 120px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

.project-detail-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px -15px var(--shadow);
}

.project-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-detail-description {
    margin-bottom: 60px;
}

.project-detail-description h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    margin-top: 40px;
}

.project-detail-description h2:first-child {
    margin-top: 0;
}

.project-detail-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-detail-description ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.project-detail-description ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.project-detail-description ul li::before {
    content: '→';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.project-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.project-detail-gallery h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.project-detail-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.project-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--bg-lighter);
}

.project-nav-link:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-3px);
}

.project-nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .project-detail-links {
        flex-wrap: wrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .project-detail-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-nav-link {
        width: 100%;
        justify-content: center;
    }
}

/* Sosyal medya ikonları için stil */
.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Modern İletişim Bölümü Stilleri */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-main-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-card-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-content a,
.contact-info-content p {
    color: white;
    opacity: 0.9;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-form-card {
    background-color: var(--card-bg);
    padding: 50px 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background-color: var(--bg-light);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .contact-card-container {
        grid-template-columns: 1fr;
    }
    
    .contact-main-card {
        padding: 40px 30px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-main-card {
        padding: 30px 20px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-card-title {
        font-size: 1.8rem;
    }
}

/* Modern Navbar Stilleri */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(var(--bg-rgb), 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(var(--bg-rgb), 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--primary);
}

.logo-icon span:first-child {
    margin-right: -3px;
}

.logo-icon span:last-child {
    margin-left: -3px;
}

.logo-text span {
    color: var(--primary);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.navbar-item {
    margin: 0 5px;
}

.navbar-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navbar-link:hover, 
.navbar-link.active {
    color: var(--text);
    background-color: rgba(var(--primary-rgb), 0.1);
}

.navbar-link-number {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    margin-right: 5px;
    opacity: 0.8;
}

.navbar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-button i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar-button:hover {
    background-color: var(--primary);
    color: white;
}

.navbar-button:hover i {
    transform: translateX(3px);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.navbar-toggle:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

.navbar-toggle-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before {
    transform: translateY(-7px);
}

.navbar-toggle-icon::after {
    transform: translateY(7px);
}

.navbar-toggle.active .navbar-toggle-icon {
    background-color: transparent;
}

.navbar-toggle.active .navbar-toggle-icon::before {
    transform: rotate(45deg);
}

.navbar-toggle.active .navbar-toggle-icon::after {
    transform: rotate(-45deg);
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .navbar-item {
        margin: 5px 0;
        width: 100%;
    }
    
    .navbar-link {
        padding: 12px 15px;
        width: 100%;
    }
    
    .navbar-button {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    .navbar-menu {
        width: 100%;
        padding: 20px;
    }
    
    .navbar-logo {
        font-size: 1.3rem;
    }
}

/* Modern Alert Styles */
.modern-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modern-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modern-alert {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-alert-overlay.active .modern-alert {
    transform: translateY(0);
    opacity: 1;
}

.modern-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.modern-alert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modern-alert-icon i {
    color: white;
    font-size: 24px;
}

.modern-alert-content {
    text-align: center;
    margin-bottom: 25px;
}

.modern-alert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.modern-alert-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.modern-alert-button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.modern-alert-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .modern-alert {
        padding: 25px;
    }
    
    .modern-alert-icon {
        width: 50px;
        height: 50px;
    }
    
    .modern-alert-title {
        font-size: 1.3rem;
    }
    
    .modern-alert-text {
        font-size: 0.95rem;
    }
}
