@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap');

/* Genel Stiller */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
    position: relative;
    overflow-x: hidden;
}

/* Enhanced Terminal Matrix Background */
.terminal-matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#matrix-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header ve Navigasyon */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

nav .logo h1 {
    margin: 0;
    color: #00ff41;
    font-family: 'Source Code Pro', monospace;
    display: inline-block;
}

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

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #00ff41;
    }
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

/* Main Content */
main {
    padding-top: 120px;
    width: 80%;
    margin: auto;
}

section {
    padding: 3rem 0;
    border-bottom: 1px solid #333;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00ff41;
    font-size: 2.5rem;
    font-family: 'Source Code Pro', monospace;
}

/* Kart Yapıları */
.deneyim-item, .egitim-item, .proje-item {
    background: #1a1a1a;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #00ff41;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

.deneyim-item:hover, .egitim-item:hover, .proje-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}


.deneyim-item h3, .egitim-item h3, .proje-item h3 {
    margin-top: 0;
    color: #00ff41;
    font-family: 'Source Code Pro', monospace;
}

/* Yetenekler */
.yetenek-listesi {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.yetenek-listesi li {
    background: #00ff41;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-shadow: none;
    transition: all 0.3s ease;
}

.yetenek-listesi li:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00ff41;
}


/* Projeler */
.projeler-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.proje-item a {
    display: inline-block;
    margin-top: 1rem;
    background: #00ff41;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-shadow: none;
    transition: all 0.3s ease;
}

.proje-item a:hover {
    background: #fff;
    color: #000;
}


/* İletişim */
#iletisim a {
    color: #00ff41;
    text-decoration: none;
}

/* Hakkımda Linkleri */
#hakkimda a {
    color: #00ff41;
    text-decoration: none;
    border-bottom: 1px dashed #00ff41;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
}

#hakkimda a:hover {
    color: #0a0a0a;
    background-color: #00ff41;
    text-shadow: none;
    border-bottom-color: #0a0a0a;
}


/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #1a1a1a;
    color: #fff;
    margin-top: 3rem;
    border-top: 1px solid #333;
}

