body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.container {
    display: flex;
    width: min(94%, 1400px);
    gap: clamp(2.5rem, 4vw, 4rem);
    padding: clamp(1rem, 2vw, 2rem);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-height: 90vh;
    max-height: 900px;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

.left-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: clamp(300px, 30%, 360px);
    flex: 0 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out 0.8s forwards;
}

.left-column {
    width: 100%;
    height: auto;
    min-height: auto;
    background: var(--secondary-bg);
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid #ff6f20;
    box-sizing: border-box;
    overflow: hidden;
}

.right-column {
    flex: 0.95;
    height: 620px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1s forwards;
}

.content-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 1rem;
    width: 100%;
}

/* Webkit (Chrome, Safari, Edge) için scroll tasarımı */
.content-section::-webkit-scrollbar {
    width: 3px; /* Scroll genişliği */
}

.content-section::-webkit-scrollbar-track {
    background: transparent;
}

.content-section::-webkit-scrollbar-thumb {
    background: #ff6f20;
    border-radius: 10px;
}

/* Scroll oklarını kaldır */
.content-section::-webkit-scrollbar-button {
    height: 0;
    width: 0;
    display: none;
}

/* Firefox için scroll tasarımı */
.content-section {
    scrollbar-color: #ff6f20 transparent;
    scrollbar-width: thin;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 1.2rem;
    box-sizing: border-box;
}

.profile-image {
    width: 90%;
    display: flex;
    justify-content: center;
}

.profile-image img {
    width: clamp(120px, 65%, 160px);
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-family: 'Matroska', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #ff6f20;
    letter-spacing: 1px;
    text-align: center;
    margin: 0.3rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.name span {
    display: block;
    line-height: 1.2;
}

.contact-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    margin: 1rem 0;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.2rem 0;
}

.contact-info a:hover {
    color: #ff6f20;
}


.location i {
    color: #ff6f20;
    font-size: 0.9rem;
}

.location span {
    font-size: 0.9rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.divider {
    display: none;
}

.social-links {
    width: 90%;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.8rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.social-links a {
    color: white;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ff6f20;
    transform: translateY(0px);
}

section {
    background-color: transparent;
    padding: 0 1.2rem 1.2rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    color: #ff6f20;
}

.about p {
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 0.85rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.8rem;
    width: 100%;
}

.hobby {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background-color: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 70px;
}

.hobby:hover {
    background-color: rgba(255, 111, 32, 0.1);
    transform: translateY(0px);
}

.hobby svg {
    width: 20px;
    height: 20px;
    fill: #ff6f20;
}

.hobby span {
    font-size: 0.75rem;
    color: #e0e0e0;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4em;
    line-height: 1.2;
    margin: 0;
    padding: 0 0.2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.8rem;
    margin-bottom: -1rem;
    width: 100%;
}

.capability {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background-color: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 70px;
}

.capability svg {
    width: 24px;
    height: 24px;
    fill: #ff6f20;
}

.capability:hover {
    background-color: rgba(255, 111, 32, 0.1);
    transform: translateY(0px);
}

.capability span {
    color: white;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        padding: 2rem 0;
        align-items: flex-start;
        overflow-y: auto;
    }

    .container {
        flex-direction: column;
        min-height: auto;
        height: auto;
        padding: 1rem;
        gap: 2rem;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3.5rem;
    }

    .left-side {
        width: 90%;
        max-width: 360px;
    }
    
    .left-column {
        width: 100%;
        min-height: auto;
        padding: 2.5rem 2rem;
    }

    .right-column {
        width: 90%;
        padding: 1.5rem;
        height: auto;
        min-height: 80vh;
    }

    .hobbies-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    section {
        padding: 0 1rem 1rem 1rem;
        margin-bottom: 1rem;
    }

    .hobby {
        padding: 0.8rem;
    }

    .profile-section {
        gap: 1.2rem;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .timeline-items {
        gap: 2rem;
    }

    .timeline-item {
        width: 120px;
    }

    .timeline-dot {
        width: 10px;
        height: 10px;
    }

    .timeline-item {
        max-width: 80px;
    }

    .timeline-dot {
        width: 8px;
        height: 8px;
    }

    .year-main {
        font-size: 0.8rem;
    }

    .year-sub {
        font-size: 0.7rem;
    }

    .timeline-content h3 {
        font-size: 0.75rem;
    }

    .timeline-content .position {
        font-size: 0.65rem;
    }

    .timeline-content .company-type {
        font-size: 0.6rem;
    }

    .timeline-item {
        padding: 0 0.3rem;
    }

    .timeline-content {
        width: 90%;
    }

    .year-main {
        font-size: 0.75rem;
    }

    .timeline-dot {
        width: 6px;
        height: 6px;
    }

    .capability svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0;
    }

    .container {
        padding: 0.5rem;
        width: 100%;
        gap: 1.5rem;
        padding-top: 3rem;
    }

    .left-column {
        width: 95%;
        padding: 2rem 1.8rem;
    }

    .right-column {
        width: 95%;
        padding: 1.5rem;
    }

    .profile-image img {
        width: 180px;
        height: 180px;
    }

    .hobbies-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.4rem;
    }

    .hobby {
        padding: 0.5rem;
        gap: 0.3rem;
        min-height: 60px;
    }

    .hobby svg {
        width: 16px;
        height: 16px;
    }

    .capability span, .hobby span {
        min-height: 2.2em;
        font-size: 0.65rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 0.9rem;
    }

    .about p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .profile-section {
        gap: 1rem;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .capability svg {
        width: 16px;
        height: 16px;
    }

    .right-column {
        height: 70vh;
    }

    .experience-item {
        gap: 1.5rem;
    }

    .year {
        min-width: 70px;
    }

    .year-main {
        font-size: 0.85rem;
    }

    .year-sub {
        font-size: 0.75rem;
    }

    .company {
        font-size: 0.85rem;
    }

    .position {
        font-size: 0.75rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        left: -1.9rem;
        width: 10px;
        height: 10px;
    }

    .timeline-item {
        padding-bottom: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 0.7rem;
    }

    .timeline-content .position {
        font-size: 0.6rem;
    }

    .timeline-content .company-type {
        font-size: 0.55rem;
    }

    .timeline-item {
        padding: 0 0.2rem;
    }
}

@media (max-width: 360px) {
    body {
        padding: 1rem 0;
    }

    .container {
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .left-column,
    .right-column {
        width: 100%;
        padding: 1.2rem;
    }

    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .profile-image img {
        width: 160px;
        height: 160px;
    }

    .profile-section {
        gap: 1.2rem;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* 2K ve üzeri ekranlar için (1440px üstü) */
@media (min-width: 1440px) {
    .container {
        width: min(94%, 1600px);
    }

    .profile-image img {
        width: clamp(160px, 75%, 200px);
    }

    .name {
        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    }

    .contact-info {
        font-size: clamp(0.8rem, 1.2vw, 0.9rem);
        gap: 1rem;
    }

    .social-links a {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }

    h2 {
        font-size: 1.2rem;
    }

    .about p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .capability, .hobby {
        padding: 0.8rem;
        gap: 0.6rem;
        min-height: 80px;
    }

    .capability svg, .hobby svg {
        width: 28px;
        height: 28px;
    }

    .capability span, .hobby span {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .capabilities-grid, .hobbies-grid {
        gap: 0.8rem;
    }

    .right-column {
        height: 680px;
    }
}

/* 4K ekranlar için (2560px üstü) */
@media (min-width: 2560px) {
    .container {
        width: min(92%, 2000px);
    }

    .left-column {
        width: clamp(350px, 28%, 420px);
    }

    .profile-image img {
        width: clamp(180px, 80%, 220px);
    }

    .name {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
    }

    .contact-info {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        gap: 1.2rem;
    }

    .social-links a {
        font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    }

    h2 {
        font-size: 1.4rem;
    }

    .about p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .capability, .hobby {
        padding: 1rem;
        gap: 0.8rem;
        min-height: 90px;
    }

    .capability svg, .hobby svg {
        width: 32px;
        height: 32px;
    }

    .capability span, .hobby span {
        font-size: 1rem;
        line-height: 1.4;
    }

    .capabilities-grid, .hobbies-grid {
        gap: 1rem;
    }

    .right-column {
        height: 750px;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-height: 700px) and (min-width: 769px) {
    .container {
        max-height: 95vh;
    }

    .left-column {
        min-height: auto;
        height: 95vh;
    }

    .right-column {
        height: 95vh;
    }
}

/* Tüm sayfa için tek cursor tanımı */
* {
    cursor: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS44IDI1LjEiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2ZmNmYyMCIgZD0iTTUuMSwyNWMtMS4zLS4zLTIuNC0xLjMtMi42LTMuMUwwLDQuM0MtLjEsMi43LjYsMS4zLDEuOS41YzEuMy0uOCwyLjktLjcsNC4yLjJsMTQuMSwxMC43YzEuNywxLjIsMS44LDMuMSwxLjIsNC40LS42LDEuNC0yLjIsMi41LTQuMiwybC02LjItMS42LTEuNiw2LjJjLS41LDItMi4zLDIuOC0zLjcsMi43LS4yLDAtLjQsMC0uNy0uMWgwWiIvPjwvc3ZnPg==') 2 2, auto;
}

/* Önceki cursor tanımlamalarını kaldır */
body, .content-section, 
a, button, .capability, .hobby,
p, span, h1, h2,
a:hover, button:hover, .capability:hover, .hobby:hover {
    cursor: inherit;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.year {
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.year-main {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.year-sub {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.company {
    color: #ff6f20;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.position {
    color: #666;
    font-size: 0.8rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff6f20;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #ff6f20;
    font-size: 0.9rem;
    font-weight: normal;
    margin: 0;
}

.timeline-content p {
    color: #666;
    font-size: 0.8rem;
    margin: 0.3rem 0 0 0;
}

.timeline-horizontal {
    position: relative;
    width: 100%;
    padding: 3rem 0;
    margin-top: 1rem;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
    transform: translateY(-50%);
}

.timeline-date {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.year-main {
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: #ff6f20;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline-content {
    text-align: center;
    width: 100%;
    position: absolute;
    top: calc(50% + 2rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
}

.timeline-content h3 {
    color: #ff6f20;
    font-size: 0.85rem;
    font-weight: normal;
    margin: 0;
}

.timeline-content p {
    color: #666;
    font-size: 0.75rem;
    margin: 0.3rem 0 0 0;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .year-main {
        font-size: 0.75rem;
    }

    .timeline-content h3 {
        font-size: 0.75rem;
    }

    .timeline-content .position {
        font-size: 0.65rem;
    }

    .timeline-content .company-type {
        font-size: 0.6rem;
    }

    .timeline-dot {
        width: 6px;
        height: 6px;
    }
}

/* Section'lar arası boşlukları ayarlayalım */
.right-column section {
    margin-bottom: 4rem;
}

.right-column section:last-child {
    margin-bottom: 0;
}

/* Timeline'ın üst margin'ini azaltalım */
.timeline-horizontal {
    margin-top: 0.5rem;
}

/* İkinci p etiketi için ek stil */
.timeline-content p:last-child {
    margin-top: 0.1rem;
}

.timeline-content .position {
    color: white;
    font-size: 0.75rem;
    margin: 0.3rem 0 0 0;
    order: 1;
}

/* Diğer timeline item'lar için de güncelleme yapalım */
.timeline-content p {
    color: white;
    font-size: 0.75rem;
    margin: 0.3rem 0 0 0;
}

/* Tema butonu - basit ortalama */
.theme-switch {
    position: fixed;
    top: 1.5rem;
    width: 40px; /* Butonun genişliği */
    left: calc(50% - 20px); /* Tam ortaya konumlandırma */
    z-index: 1000;
}

/* Mobil için sadece üst boşluğu değiştiriyoruz */
@media (max-width: 768px) {
    .theme-switch {
        top: 1rem;
    }
}

@media (max-width: 480px) {
    .theme-switch {
        top: 0.75rem;
    }
}

.theme-toggle {
    background: transparent;
    border: 2px solid #ff6f20;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    background: rgba(255, 111, 32, 0.1);
}

.theme-toggle svg {
    color: #ff6f20;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

/* Açık tema için class'lar */
body.light-theme {
    background-color: #f5f5f5;
    color: #000000;
}

body.light-theme .left-column {
    background-color: #f5f5f5;
    border-color: #ff6f20;
}

body.light-theme h2 {
    color: #ff6f20;
}

/* Timeline renkleri */
body.light-theme .timeline-line {
    background: rgb(206, 206, 206);
}

body.light-theme .year-main {
    color: black;
}

body.light-theme .timeline-content h3 {
    color: #ff6f20;
}

body.light-theme .timeline-content .position {
    color: black;
}

body.light-theme .timeline-content .company-type {
    color: #666666;
}

/* Capabilities ve Hobbies ikonları ve yazıları */
body.light-theme .capability svg {
    fill: #ff6f20;
}

body.light-theme .hobby svg {
    fill: #ff6f20;
}

body.light-theme .capability span,
body.light-theme .hobby span {
    color: black;
}

/* Sol kolon içerikleri */
body.light-theme .profile-name {
    color: black;
}

body.light-theme .profile-title {
    color: #666666;
}

body.light-theme .contact-info a,
body.light-theme .social-links a {
    color: black;
}

body.light-theme .social-links a:hover {
    color: #ff6f20;
    transform: none;
}

body.light-theme .contact-info a:hover {
    color: #ff6f20;
}

/* Timeline noktaları */
body.light-theme .timeline-dot {
    background: #ff6f20;
}

/* Hover durumları */
body.light-theme .capability:hover,
body.light-theme .hobby:hover {
    background-color: rgba(255, 111, 32, 0.1);
}

/* Tema butonu */
body.light-theme .theme-toggle {
    border-color: #ff6f20;
}

body.light-theme .theme-toggle svg {
    color: #ff6f20;
}

/* About me yazısı için */
body.light-theme .about p {
    color: black;
}

/* İstanbul yazısı için */
.profile-location span {
    color: #ff6f20;
    transition: color 0.3s ease;
}

body.light-theme .profile-location span {
    color: black;
}

/* Tema butonu ikonları */
.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

/* Açık temada ikonları değiştir */
body.light-theme .theme-toggle .moon-icon {
    display: none;
}

body.light-theme .theme-toggle .sun-icon {
    display: block;
}

/* İstanbul yazısı için */
.profile-location span {
    color: white;
}

body.light-theme .profile-location span {
    color: black;
}

/* Timeline içindeki şirket isimleri */
body.light-theme .timeline-content h3 {
    color: #ff6f20;  /* Turuncu renk */
}

/* Capabilities ikonları için */
.capability svg {
    width: 24px;
    height: 24px;
    fill: #ff6f20;  /* Koyu tema için turuncu */
}

/* Açık tema için de turuncu kalsın */
body.light-theme .capability svg {
    fill: #ff6f20;  /* Açık tema için turuncu */
}

/* Hover durumunda da turuncu kalsın */
.capability:hover svg,
body.light-theme .capability:hover svg {
    fill: #ff6f20;
}

/* Works sayfası stilleri */
.works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;  /* Üst padding'i tamamen kaldırdık */
}

.works-header {
    text-align: center;
    margin: 0 0 2rem 0;
}

.works-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ff6f20;
}

.header-line {
    width: 80%;
    height: 1px;
    background-color: #333;
    margin: 0.5rem auto 1.5rem;
}

.works-filters {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ff6f20;
    color: #ff6f20;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 111, 32, 0.1);
}

/* Açık tema için */
body.light-theme .filter-btn {
    border-color: #ff6f20;
    color: #ff6f20;
}

/* Mobil için */
@media (max-width: 768px) {
    .works-container {
        padding: 0 1rem 2rem;
    }

    .works-container h1 {
        padding-top: 0.3rem;
    }

    .works-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Açık tema için çizgi rengi */
body.light-theme .header-line {
    background-color: #999;
}

.works-content {
    width: 100%;
    max-width: 1200px;
    margin-top: 80px; /* Theme switch'in altında başlaması için */
    padding: 0 20px;
}

.works-title {
    margin-top: 40px; /* Başlığın üst boşluğunu artırın */
    text-align: center; /* Başlığı ortalayın */
}

.header-line {
    width: 80%;
    height: 1px;
    background-color: #333;
    margin: 0.5rem auto 1.5rem;
}

.works-filters {
    margin: 1.5rem 0 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.work-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .works-header {
        margin: 0 0 1.5rem 0;
    }

    .works-header h1 {
        font-size: 1.5rem;
    }

    .header-line {
        width: 90%;
    }
}

.works-title {
    font-size: 1.8rem;
    color: #ff6f20;
    text-align: center;
    margin-top: 4rem; /* Go Back butonunun altında kalması için */
    margin-bottom: 0.5rem;
}

.header-line {
    width: 80%;
    height: 1px;
    background-color: #333;
    margin: 0.5rem auto 1.5rem;
}

.works-filters {
    margin: 1.5rem 0 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .works-title {
        font-size: 1.5rem;
        margin-top: 3.5rem;
    }
}

@media (max-width: 480px) {
    .works-title {
        padding-top: 3.5rem;
    }
}

.action-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out 0.8s forwards;
}

.action-btn {
    flex: 1;
    padding: 16px ;
    background: transparent;
    color: #ff6f20;
    text-decoration: none;
    border: 1px solid #ff6f20;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.action-btn:hover {
    background: rgba(255, 111, 32, 0.1);
}

/* Açık tema için buton stilleri */
body.light-theme .action-btn {
    color: #ff6f20;
    border-color: #ff6f20;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .action-buttons {
        width: 100%;
    }
    
    .action-btn {
        padding: 16px 16px;
        font-size: 0.8rem;
    }
}

/* Sayfa geçiş animasyonu */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    transform-origin: bottom;
    animation: pageTransition 1s ease-in-out forwards;
}

/* Açık tema için geçiş animasyonu rengi */
body.light-theme .page-transition {
    background: #f5f5f5;
}

/* Animasyonlar */
@keyframes pageTransition {
    0% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(0);
    }
}

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

/* Sayfa içeriği için fade-in animasyonları */
.container {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
}

.theme-switch,
.left-column,
.action-buttons {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out 0.8s forwards;
}

.right-column {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1s forwards;
}


