
/* Genel Stiller */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-dark: #121212;
    --background-light: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-color: #0056b3;
    --error-color: #dc3545;
    --success-color: #28a745;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

/* Header ve Navigasyon */
header {
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(30, 30, 30, 0.95);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.1);
}

/* Bölüm Genel Stilleri */
section {
    min-height: 100vh;
    padding: 80px 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    opacity: 0.5;
}

section::before {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, -20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Hero Bölümü */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--background-dark);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-profile {
    text-align: center;
}

.hero-avatar-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(var(--accent-color-rgb), 0.2);
    transition: all 0.3s ease;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-avatar-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(var(--accent-color-rgb), 0.4);
}

.hero-name {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-button {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
}

.secondary-button {
    background: rgba(var(--accent-color-rgb), 0.1);
    color: var(--text-color);
    border-color: var(--accent-color);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
}

.hero-button .material-icons {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-color-rgb), 0.1);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-avatar-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }

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

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-avatar-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 1.2rem;
    }

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

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Tüm section başlıkları için merkezi hizalama */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, var(--primary-color), #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

/* Hakkımda Bölümü */
.about-section {
    background-color: var(--background-light);
}

.about-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(var(--accent-color-rgb), 0.5);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Fotoğrafı yukarı kaydırarak yüzün tamamının görünmesini sağlar */
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.bio {
    text-align: center;
    margin-bottom: 4rem;
}

.cv-download-btn {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 0.5rem;
}

.cv-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
    border-color: var(--accent-color);
}

.cv-update-date {
    font-size: 0.8rem;
    color: var(--text-color-secondary);
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Yetenek Çubukları */
.skills-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
}

.skill:nth-child(1) { animation-delay: 0.2s; }
.skill:nth-child(2) { animation-delay: 0.4s; }
.skill:nth-child(3) { animation-delay: 0.6s; }
.skill:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.skill-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-color);
    width: var(--width, 0%);
    animation: fillBar 1.5s ease forwards;
}

.skill-bar[data-level="90"]::before { --width: 90%; }
.skill-bar[data-level="85"]::before { --width: 85%; }
.skill-bar[data-level="80"]::before { --width: 80%; }
.skill-bar[data-level="75"]::before { --width: 75%; }

/* Blog Bölümü */
.blog-section {
    background-color: var(--background-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.2s; }
.blog-card:nth-child(2) { animation-delay: 0.4s; }
.blog-card:nth-child(3) { animation-delay: 0.6s; }

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.8;
}

.blog-content {
    padding: 2rem;
}

/* İletişim Bölümü */
.contact-section {
    background-color: var(--background-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info,
.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.contact-info { animation-delay: 0.2s; }
.contact-form { animation-delay: 0.4s; }

.contact-info {
    padding: 2rem;
    background: rgba(var(--accent-color-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(var(--accent-color-rgb), 0.15);
}

.info-item .material-icons {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-content {
    flex: 1;
}

.info-content .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    margin-bottom: 0.2rem;
}

.info-content .value {
    font-size: 1.1rem;
    color: var(--text-color);
}

.social-links {
    margin-top: 2.5rem;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.social-link:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    color: var(--background-dark);
}

@media (max-width: 768px) {
    .info-item {
        padding: 0.8rem;
    }

    .info-item .material-icons {
        font-size: 1.3rem;
    }

    .info-content .value {
        font-size: 1rem;
    }

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

.contact-link {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Form Elemanları */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
}

.submit-btn .material-icons {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--background-light);
    color: var(--text-secondary);
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 10;
}

/* Projeler Bölümü */
.projects-section {
    background-color: var(--background-dark);
    padding: 4rem 2rem;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.project-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

.project-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image .material-icons {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.tag {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

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

.details-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--background-light);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Hakkımda Bölümü Güncellemeleri */
.bio-details {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.bio-details p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Yetenekler Bölümü */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skills-category {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.skills-category h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Başarılar Bölümü */
.achievements-section {
    margin-top: 4rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.achievement-card .material-icons {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .project-filters {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

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

    .modal-content {
        margin: 10% 5%;
        width: 90%;
    }

    .bio-intro {
        font-size: 1.2rem;
    }

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

    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .cv-download-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animasyonlar için Intersection Observer Desteği */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
} 

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2rem auto 0;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
    border-color: var(--accent-color);
}

.back-button .material-icons {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .back-button .material-icons {
        font-size: 1rem;
    }
} 

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-avatar-container {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-avatar-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-avatar-container {
        width: 150px;
        height: 150px;
    }
} 

.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--background-dark);
}

.thank-you-content {
    text-align: center;
    padding: 3rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.thank-you-content p {
    font-size: 1.2rem;
    color: var(--text-color-secondary);
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
} 

.contact-form {
    padding: 2rem;
    background: rgba(var(--accent-color-rgb), 0.05);
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color-secondary);
    opacity: 0.7;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.4);
}

.submit-btn .material-icons {
    font-size: 1.2rem;
}

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

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

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

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease forwards;
}

.success-message .material-icons {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.success-message h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.success-message p {
    font-size: 1rem;
    color: var(--text-color-secondary);
    text-align: center;
}

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

/* Mobil Navbar Stilleri */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1001;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(var(--accent-color-rgb), 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(var(--accent-color-rgb), 0.2);
}

.mobile-nav-toggle .material-icons {
    color: var(--text-primary);
    font-size: 1.8rem;
}

/* Mobil Uyumluluk İyileştirmeleri */
@media screen and (max-width: 768px) {
    /* Mobil Navbar */
    .mobile-nav-toggle {
        display: flex;
    }

    nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-dark);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        animation: slideDown 0.3s ease-out forwards;
    }

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

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    nav a:hover {
        background-color: rgba(var(--accent-color-rgb), 0.1);
    }

    /* Genel Bölüm Ayarları */
    section {
        padding: 60px 1rem;
        min-height: auto;
    }

    section::after,
    section::before {
        display: none; /* Scroll indikatörünü mobilde kaldır */
    }

    /* Hero Bölümü */
    .hero-section {
        padding: 80px 1rem 2rem;
    }

    /* Yetenek Çubukları */
    .skills-category {
        padding: 1rem;
    }

    .skill-bars {
        gap: 1.5rem;
    }

    /* Blog Kartları */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0 auto;
        max-width: 400px;
    }

    /* Proje Kartları */
    .projects-grid {
        gap: 1.5rem;
    }

    .project-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 1.2rem;
    }

    /* Modal */
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

@media screen and (max-width: 480px) {
    /* Başlık Boyutları */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    /* Metin Boyutları */
    p {
        font-size: 0.95rem;
    }

    /* Butonlar */
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .details-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }

    /* İletişim Formu */
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Sosyal Medya İkonları */
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    /* Proje ve Blog Kartları */
    .project-card,
    .blog-card {
        margin: 0 0.5rem;
    }

    .project-tags {
        gap: 0.3rem;
    }

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

    /* Scroll Davranışı */
    html {
        scroll-snap-type: none; /* Mobilde smooth scroll'u kaldır */
    }
}

/* Tablet için Ek Düzenlemeler */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

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

/* Yatay Mobil Cihazlar için Düzenlemeler */
@media screen and (max-height: 480px) and (orientation: landscape) {
    section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-section {
        padding: 4rem 1rem 2rem;
    }

    .hero-avatar-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

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

    .hero-title {
        font-size: 1.2rem;
    }
} 
