@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&family=Manrope:wght@400;500;600&display=swap');

:root {
    /*renkler*/
    --bg-primary: #F5F1EB;
    --bg-secondary: #EBE4D8;
    --text-primary: #221F1E;
    --text-secondary: #706861;
    --accent-gold: #C7A36B;
    --bg-color: #fdf8f5;
    --text-main: #1a1a1a;
    --text-muted: #706f6e;
    --accent-color: #d9777f;
    --code-bg: #18181b;
    --code-text: #e4e4e7;
    --syn-kwd: #f472b6;
    --syn-var: #93c5fd;
    --syn-prop: #cbd5e1;
    --syn-str: #fde047;
    --syn-bool: #a7f3d0;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --accent-light: rgba(217, 119, 127, 0.08);
    --border-line: rgba(26, 26, 26, 0.12);

    /*fontlar*/
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-subtitle: 'Manrope', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-signature: 'Alex Brush', cursive;

    /*yerleşim*/
    --max-width: 1400px;
    --header-height: 85px;
    --ease-editorial: cubic-bezier(0.215, 0.61, 0.355, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/*arkaplan efektleri*/
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 10%;
    opacity: 0.25;
}

.bg-line {
    width: 1px;
    height: 100%;
    background-color: var(--border-subtle);
}

.star-icon {
    color: var(--accent-gold);
    font-size: 0.85rem;
    display: inline-block;
}

/*navbar kısmı*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-editorial);
}

.navbar.scrolled {
    background-color: rgba(245, 241, 235, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: all 0.35s var(--ease-editorial);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s var(--ease-editorial);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    .nav-links {
        gap: 20px;
    }
    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    .nav-extra {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(245, 241, 235, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s var(--ease-editorial);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    .logo-wrapper {
        position: relative;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
    }
    .nav-container {
        padding: 0 20px;
    }
    .nav-logo {
        font-size: 1.4rem;
    }
}

/*sol indikatör kısmı*/
.fixed-sidebar {
    position: fixed;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 99;
    pointer-events: none;
}

.sidebar-line-top, .sidebar-line-bottom {
    width: 1px;
    height: 40px;
    background-color: var(--border-subtle);
}

.fixed-sidebar .step {
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.fixed-sidebar .step.active {
    opacity: 1;
    color: var(--accent-gold);
    font-weight: 600;
    transform: scale(1.15);
}

.fixed-sidebar .step-dot {
    width: 3px;
    height: 3px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .fixed-sidebar {
        left: 20px;
    }
    .fixed-sidebar .step {
        font-size: 0.65rem;
    }
    .sidebar-line-top,
    .sidebar-line-bottom {
        height: 25px;
    }
}

@media (max-width: 768px) {
    .fixed-sidebar {
        display: none;
    }
}

/*Hero section kısmı*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    z-index: 1;
}

.hero-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 60px 0 110px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 5.2vw, 4.8rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 28px;
    position: relative;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.brush-wrapper {
    position: relative;
    display: inline-block;
}

.brush-stroke {
    position: absolute;
    bottom: -6px;
    left: -5%;
    width: 110%;
    height: 18px;
    pointer-events: none;
}

.title-star {
    position: absolute;
    top: 15px;
    right: 15%;
    font-size: 1rem;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: 44px;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border: 1px solid var(--text-primary);
    border-radius: 40px;
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    text-decoration: none;
    background: transparent;
    transition: all 0.4s var(--ease-editorial);
}

.btn-minimal:hover {
    background-color: var(--accent-gold);
    color: #FFF;
}

.scroll-to-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.scroll-text {
    font-family: var(--font-subtitle);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    color: var(--text-secondary);
}

.chevron-down {
    animation: bounce 2s infinite var(--ease-editorial);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.editorial-composition {
    position: relative;
    width: 100%;
    max-width: 460px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.editorial-monogram {
    position: absolute; 
    font-family: var(--font-heading);
    font-size: 16rem;
    font-weight: 500;
    color: #2E2A28;
    opacity: 0.05;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.organic-gradient-shape {
    position: absolute;
    width: 380px;
    height: 440px;
    background: radial-gradient(circle at 40% 40%, #E3DAC9 0%, #D8CEBC 60%, rgba(245, 241, 235, 0) 100%);
    border-radius: 180px 180px 40px 40px;
    opacity: 0.7;
    z-index: 2;
    filter: blur(10px);
}

.browser-frame {
    position: relative;
    z-index: 4;
    width: 100%;
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(199, 163, 107, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(46, 42, 40, 0.06);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.browser-frame:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 25px 50px rgba(199, 163, 107, 0.12);
}

.browser-header {
    height: 42px;
    background: rgba(241, 236, 229, 0.8);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-close {
    background-color: #E57373;
    opacity: 0.7;
}

.dot-min {
    background-color: #FFB74D;
    opacity: 0.7;
}

.dot-expand {
    background-color: #81C784;
    opacity: 0.7;
}

.browser-address-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-subtitle);
    font-size: 0.7rem;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.browser-tag {
    font-family: var(--font-subtitle);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
}

.browser-content {
    padding: 32px 28px;
    min-height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ui-component {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s var(--ease-editorial), transform 0.6s var(--ease-editorial);
}

.ui-component.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ui-label {
    font-family: var(--font-subtitle);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.accordion-item {
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    padding: 14px 16px;
    transition: all 0.4s ease;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-subtitle);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.accordion-body {
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.toggle-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 18px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-subtitle);
    font-size: 0.825rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D8CEBC;
    transition: .4s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s var(--ease-editorial);
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-gold);
}

input:checked+.slider:before {
    transform: translateX(18px);
}

.progress-bar-wrap {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-gold);
    transition: width 0.8s ease;
}

.mini-editorial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.4s var(--ease-editorial), border-color 0.4s ease;
}

.mini-editorial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.mini-editorial-card .badge {
    font-family: var(--font-subtitle);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

.mini-editorial-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 6px 0;
    color: var(--text-primary);
}

.mini-editorial-card p {
    font-family: var(--font-body);
    font-size: 0.775rem;
    color: var(--text-secondary);
}

.tooltip {
    position: absolute;
    top: -30px;
    right: 15px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--font-subtitle);
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mini-editorial-card:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.s-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.25;
    transition: all 0.4s ease;
    cursor: pointer;
}

.s-dot.active {
    opacity: 1;
    background: var(--accent-gold);
    transform: scale(1.3);
}

.signature-accent-front {
    position: absolute;
    bottom: -20px;
    right: -15px;
    z-index: 6;
    font-family: var(--font-signature);
    font-size: 4rem;
    color: var(--accent-gold);
    transform: rotate(-8deg);
    pointer-events: none;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        order: 1;
    }
    .hero-visual {
        order: 2;
    }
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions-group {
        justify-content: center;
        flex-wrap: wrap;
    }
    .title-star {
        display: none;
    }
    .editorial-composition {
        max-width: 400px;
        min-height: 400px;
    }
    .editorial-monogram {
        font-size: 12rem;
    }
    .organic-gradient-shape {
        width: 300px;
        height: 350px;
    }
    .signature-accent-front {
        font-size: 3rem;
        bottom: -15px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-container {
        padding: 0 25px;
        gap: 50px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .hero-actions-group {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .btn-minimal {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
    .editorial-composition {
        max-width: 320px;
        min-height: 320px;
    }
    .editorial-monogram {
        font-size: 9rem;
    }
    .organic-gradient-shape {
        width: 250px;
        height: 280px;
        border-radius: 140px 140px 30px 30px;
    }
    .browser-content {
        padding: 20px 16px;
        min-height: 180px;
    }
    .browser-header {
        height: 36px;
        padding: 0 12px;
    }
    .browser-address-bar {
        display: none;
    }
    .browser-tag {
        font-size: 0.6rem;
    }
    .signature-accent-front {
        font-size: 2.5rem;
        bottom: -12px;
        right: -8px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px;
        gap: 40px;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }
    .hero-subtitle {
        font-size: 0.65rem;
    }
    .editorial-composition {
        max-width: 280px;
        min-height: 280px;
    }
    .editorial-monogram {
        font-size: 7rem;
    }
    .organic-gradient-shape {
        width: 200px;
        height: 230px;
    }
    .browser-content {
        padding: 16px 12px;
        min-height: 150px;
    }
    .ui-label {
        font-size: 0.6rem;
    }
    .signature-accent-front {
        font-size: 2rem;
    }
}

/*hakkımda kısmı*/
.about-section {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding: 100px 5vw;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 70px;
}

.section-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.editorial-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    max-width: 900px;
}

.intro-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

.code-editor {
    background-color: var(--code-bg);
    border-radius: 8px;
    padding: 24px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--code-text);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    overflow-x: auto;
    box-sizing: border-box;
    width: 100%;
}

.editor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editor-title {
    font-size: 0.75rem;
    color: #71717a;
    margin-left: 8px;
}

.code-line {
    display: flex;
    align-items: flex-start;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.25s ease;
    cursor: pointer;
    white-space: pre-wrap;
    word-break: break-word;
}

.code-section-visible .code-line {
    opacity: 1;
    transform: translateY(0);
}

.line-num {
    width: 32px;
    color: #52525b;
    font-size: 0.8rem;
    user-select: none;
    transition: color 0.25s ease;
}

.code-text {
    white-space: pre-wrap;
    word-break: break-word;
}

.kwd {
    color: var(--syn-kwd);
}
.var {
    color: var(--syn-var);
}
.prop {
    color: var(--syn-prop);
}
.str {
    color: var(--syn-str);
}
.bool {
    color: var(--syn-bool);
}

.code-line:hover .line-num, .code-line.active-highlight .line-num {
    color: var(--accent-color);
    font-weight: bold;
}

.about-me-code-wrapper {
    margin-top: 40px;
}

.sub-code-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.info-modules-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 10px;
}

.info-module {
    position: relative;
    padding-bottom: 24px;
    cursor: pointer;
}

.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.module-body {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.module-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-line);
    transition: height 0.3s ease, background-color 0.3s ease;
}

.module-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.info-module:hover .module-desc, .info-module.active-module .module-desc {
    opacity: 1;
    color: var(--text-main);
}

.info-module:hover .module-title, .info-module.active-module .module-title {
    color: var(--accent-color);
}

.info-module:hover .module-line, .info-module.active-module .module-line {
    height: 2px;
    background-color: var(--accent-color);
}

.target-card {
    margin-top: 15px;
    padding: 20px 24px;
    background-color: var(--accent-light);
    border-left: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.target-card:hover, .target-card.active-module {
    transform: translateX(5px);
    background-color: rgba(217, 119, 127, 0.12);
}

.target-title {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.target-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.floating-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--text-main);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.floating-tooltip.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 868px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/*Projeler kısmı*/
.projects-section {
    position: relative;
    padding: 140px 0 120px 0;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 2;
    overflow: hidden;
    background-color: #F5F1EB;
}

.ambient-glow-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.95;
    transition: background 1.2s ease, transform 10s ease-in-out infinite alternate;
}

.primary-blob {
    top: 30%;
    left: 35%;
    width: 600px;
    height: 600px;
    background: var(--blob-primary, rgba(235, 228, 216, 0.75));
    animation: pulseBlobPrimary 10s ease-in-out infinite alternate;
}

.secondary-blob {
    top: 45%;
    left: 55%;
    width: 450px;
    height: 450px;
    background: var(--blob-secondary, rgba(216, 206, 188, 0.45));
    animation: pulseBlobSecondary 8s ease-in-out infinite alternate;
}

@keyframes pulseBlobPrimary {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(30px, -20px);
    }
}

@keyframes pulseBlobSecondary {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.22) translate(-25px, 25px);
    }
}

.smart-svg-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    transition: opacity 0.6s ease;
}

.smart-svg-stage svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-gold, #C7A36B);
    transition: stroke 0.8s ease;
}

.floating-art-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.float-item {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.45;
    transition: color 0.8s ease;
}

.float-star {
    top: 18%;
    right: 7%;
    font-size: 1.3rem;
}

.float-circle {
    top: 72%;
    left: 4%;
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0.25;
}

.float-line {
    bottom: 12%;
    right: 10%;
    width: 90px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.35;
}

.section-header {
    padding: 0 110px;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 5.5vw, 5.2rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 14px;
}

.section-intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

.editorial-showcase {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 190px 1.8fr 340px;
    gap: 28px;
    align-items: center;
    padding: 0 50px 0 70px;
    min-height: 520px;
}

.project-contents-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contents-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.35;
    transition: all 0.4s var(--ease-editorial);
}

.contents-item .item-title {
    font-family: var(--font-subtitle);
    font-size: 0.925rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    transition: color 0.4s ease, transform 0.4s var(--ease-editorial);
}

.contents-item .item-cat {
    font-family: var(--font-body);
    font-size: 0.725rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.contents-item .item-line {
    width: 100%;
    height: 1px;
    background-color: var(--border-subtle);
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.contents-item .item-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-gold);
    transition: width 0.4s var(--ease-editorial), background-color 0.8s ease;
}

.contents-item:hover {
    opacity: 0.8;
}

.contents-item.active {
    opacity: 1;
}

.contents-item.active .item-title {
    color: var(--accent-gold);
    font-weight: 600;
    transform: translateX(6px);
}

.contents-item.active .item-line::after {
    width: 100%;
    background-color: var(--accent-gold, #C7A36B);
}

.showcase-visual-container {
    position: relative;
    width: 100%;
    transform: translateY(8px);
    perspective: 1200px;
}

.showcase-visual-container .visual-meta-tags {
    position: absolute;
    top: auto;
    left: 14px;
    bottom: 14px;
    right: auto; 
    z-index: 5;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.showcase-visual-container .meta-tag {
    background: rgba(255, 255, 255, 0.45); 
    backdrop-filter: blur(12px);            
    -webkit-backdrop-filter: blur(12px);  
    color: var(--text-primary);           
    font-family: var(--font-subtitle);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04); 
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s ease;
}

.visual-offset-frame {
    position: absolute;
    top: 16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    border-radius: 4px;
    z-index: 1;
    opacity: 0.5;
}

.visual-gold-contour {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    transition: border-color 0.8s ease;
}

.image-reveal-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 380px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    background-color: #12100F;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 0.8s var(--ease-editorial), transform 0.6s var(--ease-editorial), filter 0.6s ease;
}

.image-reveal-wrapper.mask-close {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: scale(0.95) rotate(-1.5deg);
    filter: blur(4px);
}

.visual-meta-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: flex;
    gap: 8px;
    pointer-events: none;
}

.meta-tag {
    background: rgba(18, 16, 15, 0.8);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    font-family: var(--font-subtitle);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.8s ease;
}

.pulse-dot {
    width: 5px;
    height: 5px;
    background-color: #81C784;
    border-radius: 50%;
    box-shadow: 0 0 8px #81C784;
}

.floating-mobile-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
    width: 90px;
    height: 140px;
    background: rgba(248, 246, 243, 0.95);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 8px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s var(--ease-editorial);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-mobile-card .mini-bar {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    border-radius: 2px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.floating-mobile-card .mobile-text {
    font-family: var(--font-subtitle);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-align: center;
    margin-top: auto;
    font-weight: 600;
}

.showcase-visual-container:hover .floating-mobile-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mouse-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 80%);
    transition: opacity 0.4s ease;
}

.image-reveal-wrapper:hover .mouse-spotlight {
    opacity: 1;
}

.reveal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(15%) contrast(105%);
    transition: transform 1.2s var(--ease-editorial), filter 0.6s ease;
    will-change: transform;
}

.showcase-visual-container .image-reveal-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    background-color: #ffffff; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-reveal-wrapper .reveal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.6s var(--ease-editorial), filter 0.6s ease;
}

.showcase-visual-container:hover .image-reveal-wrapper {
    transform: scale(1.02);
}

.showcase-visual-container:hover .reveal-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.showcase-info {
    display: flex;
    flex-direction: column;
    transform: translateY(-10px);
    width: 100%;
}

.issue-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-subtitle);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.8s ease;
}

.info-category {
    display: block;
    font-family: var(--font-subtitle);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.info-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.08;
}

.info-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 420px;
}

.info-techs-line {
    font-family: var(--font-subtitle);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 500;
}

.info-techs-line span {
    color: var(--accent-gold);
    margin: 0 6px;
    opacity: 0.6;
}

.btn-project {
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-editorial);
}

.btn-project:hover {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold);
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.stagger-el {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-editorial), transform 0.6s var(--ease-editorial);
}

.showcase-info.anim-out .stagger-el {
    opacity: 0;
    transform: translateY(18px);
}

.showcase-info.anim-out .stagger-el:nth-child(1) {
    transition-delay: 0s;
}
.showcase-info.anim-out .stagger-el:nth-child(2) {
    transition-delay: 0.04s;
}
.showcase-info.anim-out .stagger-el:nth-child(3) {
    transition-delay: 0.08s;
}
.showcase-info.anim-out .stagger-el:nth-child(4) {
    transition-delay: 0.12s;
}
.showcase-info.anim-out .stagger-el:nth-child(5) {
    transition-delay: 0.16s;
}
.showcase-info.anim-out .stagger-el:nth-child(6) {
    transition-delay: 0.20s;
}

.showcase-info.anim-in .stagger-el:nth-child(1) {
    transition-delay: 0.08s;
}
.showcase-info.anim-in .stagger-el:nth-child(2) {
    transition-delay: 0.16s;
}
.showcase-info.anim-in .stagger-el:nth-child(3) {
    transition-delay: 0.24s;
}
.showcase-info.anim-in .stagger-el:nth-child(4) {
    transition-delay: 0.32s;
}
.showcase-info.anim-in .stagger-el:nth-child(5) {
    transition-delay: 0.40s;
}
.showcase-info.anim-in .stagger-el:nth-child(6) {
    transition-delay: 0.48s;
}

@media (max-width: 1024px) {
    .projects-section {
        padding: 80px 0 80px 0;
    }
    .section-header {
        padding: 0 40px;
    }
    .section-title {
        font-size: clamp(2.8rem, 6vw, 4rem);
    }
    .section-intro {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .editorial-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
        min-height: auto;
    }
    .smart-svg-stage,
    .floating-art-layer {
        display: none;
    }
    .project-contents-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        order: 3;
    }
    .contents-item {
        flex: 0 1 auto;
        opacity: 0.5;
    }
    .contents-item .item-line {
        display: none;
    }
    .contents-item .item-title {
        font-size: 0.8rem;
    }
    .contents-item .item-cat {
        display: none;
    }
    .showcase-visual-container {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    .showcase-info {
        order: 2;
        align-items: center;
        text-align: center;
        transform: translateY(0);
    }
    .info-description {
        max-width: 100%;
    }
    .visual-offset-frame,
    .visual-gold-contour {
        display: none;
    }
    .primary-blob {
        width: 400px;
        height: 400px;
        top: 20%;
        left: 25%;
    }
    .secondary-blob {
        width: 300px;
        height: 300px;
        top: 40%;
        left: 50%;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0 60px 0;
    }
    .section-header {
        padding: 0 25px;
        text-align: center;
    }
    .section-title {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }
    .section-intro {
        font-size: 0.85rem;
    }
    .editorial-showcase {
        padding: 0 25px;
        gap: 30px;
    }
    .project-contents-list {
        gap: 12px;
    }
    .contents-item {
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        border: 1px solid var(--border-subtle);
    }
    .contents-item.active {
        background: rgba(199, 163, 107, 0.1);
        border-color: var(--accent-gold);
    }
    .contents-item .item-title {
        font-size: 0.75rem;
    }
    .info-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    .info-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .info-techs-line {
        font-size: 0.7rem;
        margin-bottom: 24px;
    }
    .visual-meta-tags {
        top: 10px;
        left: 10px;
    }
    .meta-tag {
        font-size: 0.55rem;
        padding: 3px 8px;
    }
    .floating-mobile-card {
        display: none;
    }
    .btn-project {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
    .glow-blob {
        filter: blur(60px);
    }
    .primary-blob {
        width: 300px;
        height: 300px;
    }
    .secondary-blob {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 50px 0 50px 0;
    }
    .section-header {
        padding: 0 20px;
    }
    .editorial-showcase {
        padding: 0 20px;
        gap: 24px;
    }
    .project-contents-list {
        gap: 8px;
    }
    .contents-item {
        padding: 6px 12px;
    }
    .contents-item .item-title {
        font-size: 0.7rem;
    }
    .showcase-visual-container {
        max-width: 100%;
    }
    .info-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    .info-category {
        font-size: 0.65rem;
    }
    .issue-header {
        font-size: 0.65rem;
    }
}

/*yeteneklerim*/
#skills, .skills-editorial-section {
    position: relative;
    overflow: hidden;
    padding: 100px 5vw;
    background-color: var(--bg-color, #fdf8f5);
    transition: background-color 0.8s ease;
}

.skills-atmosphere-engine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.skills-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-editorial-header {
    margin-bottom: 40px;
}

.skills-headline {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 12px;
}

.skills-subtext {
    font-size: 0.95rem;
    color: var(--text-muted, #706f6e);
}

.ambient-glow-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.08;
    transition: background 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s ease;
    will-change: background, transform;
}

.orb-primary {
    top: -100px;
    right: -100px;
    width: 900px;
    height: 900px;
    background: var(--accent-gold, #C7A36B);
}

.orb-secondary {
    bottom: -150px;
    left: -150px;
    width: 800px;
    height: 800px;
    background: var(--accent-color, #d9777f);
}

.parallax-noise-grid {
    position: absolute;
    inset: -20px;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.7;
    transition: transform 0.2s cubic-bezier(0.1, 1, 0.1, 1);
    will-change: transform;
}

.editorial-path-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--accent-color, #d9777f);
    opacity: 0.2;
    transition: opacity 0.8s ease, color 0.8s ease;
}

.tech-path {
    transition: stroke 0.8s ease;
}

.path-node {
    animation: pulseNode 3s infinite alternate ease-in-out;
}

@keyframes pulseNode {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0.9;
    }
}

.floating-elements-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-shape {
    position: absolute;
    color: var(--accent-gold, #C7A36B);
    opacity: 0.35;
    font-family: serif;
    pointer-events: none;
}

.shape-star {
    top: 15%;
    right: 12%;
    font-size: 1.2rem;
    animation: floatSlow 24s infinite ease-in-out alternate;
}

.shape-circle {
    bottom: 20%;
    left: 8%;
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent-color, #d9777f);
    border-radius: 50%;
    animation: floatSlow 28s infinite ease-in-out alternate-reverse;
}

.shape-plus {
    top: 60%;
    right: 6%;
    font-size: 1rem;
    animation: floatSlow 22s infinite ease-in-out alternate;
}

.shape-ring {
    top: 30%;
    left: 15%;
    width: 18px;
    height: 18px;
    border: 1px dashed var(--border-line, rgba(0, 0, 0, 0.1));
    border-radius: 50%;
    opacity: 0.2;
    animation: floatSlow 30s infinite ease-in-out alternate-reverse;
}

@keyframes floatSlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -25px) rotate(45deg);
    }
    100% {
        transform: translate(-20px, 15px) rotate(90deg);
    }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.nude-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(253, 248, 245, 0.7) 100%);
}

.mouse-follower-light {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    will-change: transform, opacity;
}

.code-texture-layer {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-main, #1a1a1a);
    opacity: 0.025;
    user-select: none;
    letter-spacing: 2px;
}

.skills-editorial-section .skills-atmosphere-engine {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skills-editorial-section.section-entered .skills-atmosphere-engine {
    opacity: 1;
}

.skills-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 16px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    min-width: 100%;
}

.track-left .marquee-content {
    animation: scrollLeft 35s linear infinite;
}

.track-right .marquee-content {
    animation: scrollRight 35s linear infinite;
}

.skills-marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.tech-pill {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-line, rgba(26, 26, 26, 0.12));
    color: var(--text-main, #1a1a1a);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-pill:hover,
.tech-pill.active {
    background: var(--text-main, #1a1a1a);
    color: #ffffff;
    border-color: var(--text-main, #1a1a1a);
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.skills-stage-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 32px;
    align-items: stretch;
}

.skills-info-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-line, rgba(26, 26, 26, 0.12));
    border-radius: 12px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-status-badge {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--accent-color, #d9777f);
    font-weight: 600;
    margin-bottom: 20px;
}

.skills-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-bullet-list li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}

.skills-bullet-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color, #d9777f);
}

.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.skills-demo-stage {
    background: #18181b;
    border-radius: 12px;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}

.demo-stage-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.demo-title {
    font-size: 0.8rem;
    font-family: monospace;
    color: #a1a1aa;
    margin-left: 10px;
}

.demo-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.demo-html-tree {
    font-family: monospace;
    font-size: 0.85rem;
    width: 100%;
    color: #f472b6;
}

.demo-html-tree div {
    padding: 6px 12px;
    margin: 4px 0;
    border-left: 2px solid rgba(244, 114, 182, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.demo-css-box {
    width: 110px;
    height: 50px;
    background: #d9777f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-css-box:hover {
    transform: scale(1.18) rotate(4deg);
    background: #f472b6;
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.5);
}

.demo-js-toggle {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.demo-js-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.85rem;
    color: #a1a1aa;
}

.demo-js-toggle.open .demo-js-content {
    max-height: 60px;
    margin-top: 8px;
}

.demo-git-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 0.8rem;
}

.git-node {
    width: 12px;
    height: 12px;
    background: #60a5fa;
    border-radius: 50%;
    position: relative;
}

.git-node::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 12px;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.git-node:last-child::after {
    display: none;
}

.demo-yolo-box {
    position: relative;
    width: 180px;
    height: 120px;
    border: 2px dashed #34d399;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    padding: 4px;
    animation: pulseBox 2s infinite alternate;
}

.yolo-tag {
    background: #34d399;
    color: #18181b;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
}

@keyframes pulseBox {
    0% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1.02);
    }
}

@media (max-width: 868px) {
    .skills-stage-grid {
        grid-template-columns: 1fr;
    }
}

/*iletişim*/
.contact-editorial-section {
    position: relative;
    padding: 120px 5vw;
    background-color: var(--bg-color, #fdf8f5);
    overflow: hidden;
}

.contact-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.12;
    transition: transform 0.6s ease;
}

.contact-glow-1 {
    top: 20%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: var(--accent-gold, #C7A36B);
}

.contact-glow-2 {
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: var(--accent-color, #d9777f);
}

.contact-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: center;
}

.contact-left-col {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-editorial-section.section-entered .contact-left-col {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.desktop-mockup-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(199, 163, 107, 0.05);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.desktop-mockup-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.07);
}

.desktop-window-header {
    background: rgba(245, 240, 235, 0.8);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.win-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.win-dot.close {
    background: #ff5f56;
}

.win-dot.minimize {
    background: #ffbd2e;
}

.win-dot.expand {
    background: #27c93f;
}

.window-address-bar {
    margin: 0 auto;
    font-family: monospace;
    font-size: 0.72rem;
    color: #706f6e;
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.desktop-screen-content {
    position: relative;
    padding: 32px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-loader {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-family: monospace;
    transition: opacity 0.4s ease;
}

.loader-terminal-line {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 16px;
}

.loader-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loader-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-gold, #C7A36B);
    transition: width 1.1s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.loader-status {
    font-size: 0.68rem;
    color: #908e8b;
}

.desktop-form-view {
    width: 100%;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.desktop-form-view.active {
    display: block;
    opacity: 1;
}

.form-header-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--accent-gold, #C7A36B);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.editorial-contact-form .input-group {
    position: relative;
    margin-bottom: 24px;
}

.editorial-contact-form input,
.editorial-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.15);
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-main, #1a1a1a);
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.editorial-contact-form label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.88rem;
    color: #807e7b;
    pointer-events: none;
    transition: all 0.3s ease;
}

.editorial-contact-form input:focus~label,
.editorial-contact-form input:not(:placeholder-shown)~label,
.editorial-contact-form textarea:focus~label,
.editorial-contact-form textarea:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 0.72rem;
    color: var(--accent-gold, #C7A36B);
    font-weight: 600;
}

.editorial-contact-form .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gold, #C7A36B);
    transition: width 0.35s ease;
}

.editorial-contact-form input:focus~.input-line,
.editorial-contact-form textarea:focus~.input-line {
    width: 100%;
}

.contact-submit-btn {
    width: 100%;
    background: var(--text-main, #1a1a1a);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--accent-gold, #C7A36B);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(199, 163, 107, 0.25);
}

.btn-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.form-feedback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.form-feedback-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.feedback-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(199, 163, 107, 0.15);
    color: var(--accent-gold, #C7A36B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px auto;
}

.feedback-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-main, #1a1a1a);
}

.feedback-text {
    font-size: 0.88rem;
    color: #706f6e;
    line-height: 1.5;
    margin-bottom: 20px;
}

.feedback-reset-btn {
    background: transparent;
    border: 1px solid rgba(26, 26, 26, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-reset-btn:hover {
    background: var(--text-main, #1a1a1a);
    color: #ffffff;
}

.contact-right-col {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.contact-editorial-section.section-entered .contact-right-col {
    opacity: 1;
    transform: translateY(0);
}

.contact-section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent-gold, #C7A36B);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.contact-headline {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--text-main, #1a1a1a);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted, #605f5d);
    margin-bottom: 40px;
    max-width: 440px;
}

.contact-channels-list {
    display: flex;
    flex-direction: column;
}

.channel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    text-decoration: none;
    color: var(--text-main, #1a1a1a);
    transition: padding-left 0.35s ease, border-color 0.35s ease;
}

.channel-row:hover {
    padding-left: 10px;
    border-color: var(--accent-gold, #C7A36B);
}

.channel-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #908e8b;
    transition: color 0.3s ease;
}

.channel-row:hover .channel-label {
    color: var(--accent-gold, #C7A36B);
}

.channel-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.channel-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.channel-row:hover .channel-arrow {
    transform: translate(3px, -3px);
    color: var(--accent-gold, #C7A36B);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-left-col {
        order: 2;
    }
    .contact-right-col {
        order: 1;
    }
    .desktop-screen-content {
        padding: 24px;
        min-height: 360px;
    }
}

/* footer*/
.single-line-footer {
    background-color: var(--bg-color, #fdf8f5);
    border-top: 1px solid rgba(26, 26, 26, 0.06);
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 15px 5vw;
    font-family: var(--font-sans, system-ui, sans-serif);
}

.single-line-footer .footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.brand-name {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.05rem;
    color: var(--text-main, #1a1a1a);
    font-weight: 400;
}

.brand-dot {
    color: #a09e9b;
    font-size: 0.9rem;
}

.brand-tag {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    color: var(--accent-gold, #C7A36B);
    font-weight: 600;
}

.footer-moon {
    font-size: 0.9rem;
    color: var(--accent-gold, #C7A36B);
    opacity: 0.75;
    user-select: none;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #706f6e;
    font-size: 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

.social-icon {
    width: 13px;
    height: 13px;
    color: #807e7b;
    transition: color 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold, #C7A36B);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--text-main, #1a1a1a);
}

.social-link:hover .social-icon {
    color: var(--accent-gold, #C7A36B);
}

.social-link:hover::after {
    width: 100%;
}

.copyright-full {
    font-size: 0.72rem;
    color: #908e8b;
    letter-spacing: 0.3px;
    opacity: 0.8;
    white-space: nowrap;
}

@media (max-width: 868px) {
    .single-line-footer {
        padding: 20px 5vw;
    }
    .single-line-footer .footer-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .footer-center {
        display: none;
    }
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
    .copyright-full {
        white-space: normal;
    }
}