/* Genel Stiller */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Fira+Code:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
    --terminal-green: #4ade80;
    --terminal-blue: #3b82f6;
    --terminal-red: #ef4444;
    --terminal-yellow: #facc15;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    padding-top: 0;
    background-color: var(--light);
    overflow-x: hidden;
}

/* Navbar Stilleri */
.navbar {
    transition: all 0.4s ease;
    padding: 20px 0;
    background-color: transparent !important;
    box-shadow: none;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-dark .navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: none;
}

/* Özel hamburger ikon */
.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 30px;
    height: 22px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: translateY(10px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section Stilleri */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #2c4999 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: url('https://cdn.jsdelivr.net/npm/pattern.css@1.0.0/dist/patterns/dot-grid.svg');
    opacity: 0.05;
    animation: rotate 90s linear infinite;
}

#hero::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: var(--primary);
    right: -20vw;
    top: -20vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse 8s ease-in-out infinite alternate;
}

/* Hero Section Tech Badges */
.tech-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.tech-badge-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.tech-badge-item:nth-child(2) {
    animation-delay: 1s;
}

.tech-badge-item:nth-child(3) {
    animation-delay: 2s;
}

.tech-badge-item:nth-child(4) {
    animation-delay: 3s;
}

.tech-badge-item:nth-child(5) {
    animation-delay: 4s;
}

.tech-badge-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.tech-badge-item:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.tech-badge-item:hover::after {
    top: 0;
    left: 0;
}

/* Matrix effect in hero */
.matrix-effect {
    width: 100%;
    height: 40px;
    background: linear-gradient(to right, transparent, var(--terminal-green), transparent);
    position: relative;
    overflow: hidden;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.matrix-effect::before {
    content: '10100101010110101001010101010101010010101010101010100101010101';
    position: absolute;
    font-family: 'Fira Code', monospace;
    font-size: 1.2rem;
    color: var(--terminal-green);
    white-space: nowrap;
    letter-spacing: 5px;
    animation: matrixMove 20s linear infinite;
}

@keyframes matrixMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Code wrapper in hero */
.code-wrapper {
    display: inline-block;
    text-align: left;
    font-family: 'Fira Code', monospace;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 8px;
    padding: 20px;
    color: var(--code-text);
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-line {
    display: block;
    line-height: 1.5;
}

.code-keyword {
    color: #ff79c6;
}

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

.code-string {
    color: #f1fa8c;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

#hero .container {
    position: relative;
    z-index: 10;
}

#hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

#hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

#hero .lead {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-arrow a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.scroll-down-arrow a:hover {
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Button Stilleri */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-dark);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-outline-light:hover {
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light:hover::before {
    width: 100%;
}

/* Profile Image */
.profile-image {
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto;
}

.profile-image:hover {
    transform: rotate(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Genel Bölüm Stilleri */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

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

/* Hakkımda Bölümü Stilleri */
#about {
    position: relative;
    background-color: #fff;
}

#about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    left: -150px;
    top: -150px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
}

#about::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

#about img,
#about div[style*="border-radius: 50%"] {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    transition: all 0.5s ease;
    overflow: hidden;
}

#about img:hover,
#about div[style*="border-radius: 50%"]:hover {
    transform: rotate(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Code Headings */
.code-heading {
    font-family: 'Fira Code', monospace;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Skill Bars */
.skill-bars-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-weight: 600;
    color: var(--dark);
}

.skill-percentage {
    font-weight: 700;
    color: var(--primary);
}

.skill-progress {
    height: 12px;
    background-color: var(--gray-light);
    border-radius: 50px;
    overflow: hidden;
}

.skill-progress .progress-bar {
    background: linear-gradient(to right, var(--primary), var(--secondary)) !important;
    border-radius: 50px;
    background-size: 200% 100% !important;
}

.progress-bar-striped {
    background-image: none !important;
}

/* Tech Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-badge i {
    margin-right: 5px;
}

.tech-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Language Proficiency */
.language-proficiency {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.language-item {
    display: flex;
    flex-direction: column;
}

.language-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.language-level {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.level-dot {
    width: 12px;
    height: 12px;
    background-color: var(--gray-light);
    border-radius: 50%;
}

.level-dot.active {
    background-color: var(--primary);
}

.language-item small {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Stats Card */
.stats-card {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 255, 0.9) 100%);
}

.stats-row {
    text-align: center;
}

.stats-item {
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.stats-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stats-label {
    color: var(--gray);
    font-weight: 500;
}

/* Code Block */
.code-block {
    background: var(--code-bg);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Fira Code', monospace;
    position: relative;
    overflow: hidden;
}

.code-block pre {
    margin: 0;
    color: var(--code-text);
    font-size: 0.9rem;
}

.code-block code {
    display: block;
    line-height: 1.5;
}

.code-block .text-secondary {
    color: #6c7293 !important;
}

.code-block .text-primary {
    color: var(--terminal-blue) !important;
}

.code-block .text-success {
    color: var(--terminal-green) !important;
}

.code-block .text-danger {
    color: var(--terminal-red) !important;
}

.code-block .text-warning {
    color: var(--terminal-yellow) !important;
}

/* Floating Icons Animation */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(99, 102, 241, 0.2);
    animation: floatIcon 10s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(0, 30px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Code Editor Container */
.code-editor-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.code-editor-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #2d3748;
    color: white;
}

.code-editor-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.code-editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-editor-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.code-editor-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.code-editor-dots span:nth-child(3) {
    background-color: #27c93f;
}

.code-editor-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    flex-grow: 1;
}

.code-editor-body {
    display: flex;
    background: #1a202c;
    color: #e2e8f0;
    overflow-x: auto;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    text-align: right;
    user-select: none;
    background: #2d3748;
    color: #a0aec0;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    min-width: 40px;
}

.code-editor-body pre {
    margin: 0;
    padding: 15px 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    tab-size: 4;
    overflow-x: visible;
}

.json-key {
    color: #f59e0b;
}

.json-string {
    color: #10b981;
}

.py-keyword {
    color: #ec4899;
}

.py-class {
    color: #3b82f6;
}

.py-function {
    color: #10b981;
}

.py-self {
    color: #f97316;
}

.py-none {
    color: #ec4899;
}

.py-comment {
    color: #64748b;
}

.py-string {
    color: #facc15;
}

/* Terminal Section */
.terminal-section {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #2d3748;
    color: white;
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.terminal-body {
    background: #1a202c;
    color: #e2e8f0;
    padding: 15px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 150px;
}

.terminal-line {
    margin-bottom: 5px;
}

.terminal-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Code Comments */
.code-comment {
    font-family: 'Fira Code', monospace;
    color: var(--gray);
    margin: 30px 0;
}

.typing-text {
    border-right: 2px solid var(--primary);
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Project Cards */
.project-filter {
    text-align: center;
    margin-bottom: 40px;
}

.btn-filter {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray-light);
    margin: 0 5px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-filter:hover, .btn-filter.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.project-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    height: 100%;
}

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

.project-card-header {
    background: var(--code-bg);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tech-tags span {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.project-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-terminal {
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.jsdelivr.net/npm/pattern.css@1.0.0/dist/patterns/circuit-board.svg');
    background-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

footer p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

footer .social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

footer .social-links a:hover {
    color: #fff;
    transform: translateY(-5px);
    background: var(--primary);
}

footer .social-links i {
    font-size: 1.5rem;
}

/* Animasyonlar ve Efektler */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    #hero {
        padding: 120px 0 80px;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero h2 {
        font-size: 1.5rem;
    }
    
    #hero .lead {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .card {
        margin-bottom: 30px;
    }
    
    #contact ul li {
        font-size: 0.95rem;
        display: flex;
        align-items: center;
    }
    
    footer .social-links i {
        font-size: 1.2rem;
    }
    
    .code-wrapper {
        font-size: 0.8rem;
        padding: 15px;
    }
    
    .code-editor-body {
        flex-direction: column;
    }
    
    .line-numbers {
        display: none;
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    #hero h2 {
        font-size: 1.2rem;
    }
    
    footer .social-links i {
        font-size: 1rem;
    }
    
    .tech-badge-item {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stats-counter {
        font-size: 2rem;
    }
}

/* Parlaklık efekti */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    animation: shineEffect 6s infinite linear;
}

@keyframes shineEffect {
    0% { left: -60%; }
    100% { left: 160%; }
}

/* Fluffy animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}