/* ================= THEME VARIABLES (VIOLET EDITION) ================= */
:root {
    /* Light Theme Defaults */
    --bg-color: #f3f4f6;
    --sidebar-bg: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --accent-color: #7c3aed; /* Modern Violet */
    --accent-hover: #6d28d9;
    --accent-rgb: 124, 58, 237;
    --accent-light: rgba(124, 58, 237, 0.1);
    --item-hover: #ede9fe;
    --border-color: #e2d9f3;
    --card-bg: #ffffff;
    --card-solid: #f3effe;
    --header-bg: rgba(255, 255, 255, 0.85);
    --nav-list-bg: rgba(124, 58, 237, 0.03);
    --nav-item-active-bg: rgba(124, 58, 237, 0.12);
    --nav-item-active-shadow: rgba(124, 58, 237, 0.2);
    --shadow:
        0 4px 20px rgba(124, 58, 237, 0.12), 0 2px 10px rgba(0, 0, 0, 0.04);
    --transition-speed: 0.3s;

    /* Terminal & Glow Specifics */
    --glow-b1: rgba(139, 92, 246, 0.35);
    --glow-b2: rgba(192, 132, 252, 0.25);
    --glow-b3: rgba(99, 102, 241, 0.2);
    --terminal-green: #10b981;
}

[data-theme="dark"] {
    /* Dark Theme (AMOLED / Deep Purple Glow) */
    --bg-color: #0d0d0d; /* Dokunulmadı */
    --sidebar-bg: rgba(13, 13, 13, 0.5);
    --text-primary: #f0fff0;
    --text-secondary: #a0b0a0;
    --accent-color: #8b5cf6; /* Bright Neon Violet */
    --accent-hover: #7c3aed;
    --accent-rgb: 139, 92, 246;
    --accent-light: rgba(139, 92, 246, 0.15);
    --item-hover: #191622;
    --border-color: #222222;
    --card-bg: rgba(20, 18, 26, 0.6);
    --card-solid: #13111a;
    --header-bg: rgba(13, 13, 13, 0.5);
    --nav-list-bg: rgba(255, 255, 255, 0.02);
    --nav-item-active-bg: rgba(139, 92, 246, 0.15);
    --nav-item-active-shadow: rgba(139, 92, 246, 0.35);
    --shadow: 0 4px 25px rgba(139, 92, 246, 0.2), 0 2px 10px rgba(0, 0, 0, 0.6);

    --glow-b1: rgba(139, 92, 246, 0.25);
    --glow-b2: rgba(168, 85, 247, 0.18);
    --glow-b3: rgba(79, 70, 229, 0.15);
    --terminal-green: #34d399;
}

/*Webkit items*/
::-webkit-scrollbar {
    width: 5px;
    background: transparent;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px var(--border-color);
}

::-webkit-scrollbar:hover {
    background: var(--sidebar-bg);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        0deg,
        rgb(255, 0, 234),
        rgb(132, 0, 255),
        rgb(76, 0, 255)
    );
}

/* ================= BASE STYLES ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    transition:
        background-color var(--transition-speed) ease,
        color var(--transition-speed) ease;
}

h1,
h2,
h3,
h4 {
    font-family: "Figtree", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ================= STRICT ICON SYSTEM FIXES ================= */
.icon,
svg.icon,
svg {
    width: 1em;
    height: 1em;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Sayfa içindeki SVG alanlarının patlamasını engelleme */
.info-box h3 .icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.social-links .icon,
.social-links svg {
    font-size: 28px;
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    display: inline-block;
}

.dc img {
    width: 50px;
    height: 50px;
}

.projects-area {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

.project-logo .icon,
.project-logo img {
    font-size: 40px;
    width: 60px;
    height: 60px;
    color: var(--accent-color);
}

.spec-icon .icon,
.spec-icon svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* ================= ANIMATED BACKGROUND ================= */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bg-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-blob.b1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--glow-b1), transparent 70%);
    top: -180px;
    left: -120px;
    animation: float1 18s ease-in-out infinite;
}

.glow-blob.b2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--glow-b2), transparent 70%);
    top: 30%;
    right: -160px;
    animation: float2 22s ease-in-out infinite;
}

.glow-blob.b3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--glow-b3), transparent 70%);
    bottom: -120px;
    left: 35%;
    animation: float3 26s ease-in-out infinite;
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 60px) scale(1.15);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-70px, 50px) scale(1.1);
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, -40px) scale(1.2);
    }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ================= FLOATING NAVBAR ================= */
.nav-wrap {
    position: sticky;
    top: 18px;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 46px;
}

header.navbar {
    width: 100%;
    max-width: 1100px;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 5px 20px;
}

.navbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.logo_image {
    width: 50px;
    height: 50px;
}

nav.links {
    display: flex;
    gap: 6px;
    align-items: center;
}

nav.links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 46px;
    min-width: 46px;
    height: 38px;
    padding: 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
        width 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    will-change: width, transform, padding;
}

nav.links a .nav-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: inherit;
    line-height: 1;
}

nav.links a .nav-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

nav.links a .nav-label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    transform: translateX(6px);
    overflow: hidden;
    white-space: nowrap;
    transition:
        max-width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

nav.links a:hover,
nav.links a.active {
    color: var(--text-primary);
    border-color: var(--border-color);
    width: 132px;
    padding: 0 14px;
    gap: 8px;
    transform: translateY(-2px);
}

nav.links a:hover .nav-label,
nav.links a.active .nav-label {
    max-width: 90px;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

nav.links a.active {
    background: var(--nav-item-active-bg);
    color: var(--accent-color);
    font-weight: 700;
}

nav.links a:hover {
    background: var(--card-bg);
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--nav-list-bg);
    border: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle svg {
    width: 18px;
    height: 18px;
}

/* ================= KURUMSAL HERO SECTION ================= */
.hero-corporate {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0 60px;
    animation: fadeUp 0.7s ease both;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-desc strong {
    color: var(--text-primary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tag {
    background: var(--accent-light);
    border: 1px solid var(--border-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item .stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: "Figtree", sans-serif;
}

.stat-item .stat-num span {
    color: var(--accent-color);
}

.stat-item .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ================= TERMINAL WIDGET ================= */
.hero-widget {
    background: var(--card-solid);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
}

.widget-header {
    background: var(--nav-list-bg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.w-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.w-dot.r {
    background: #ff5f56;
}
.w-dot.y {
    background: #ffbd2e;
}
.w-dot.g {
    background: #27c93f;
}

.w-title {
    font-size: 11px;
    font-family: monospace;
    color: var(--text-secondary);
    margin-left: auto;
}

.widget-body {
    padding: 24px;
    font-family: monospace;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.w-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.w-row:last-child {
    border: none;
    padding-bottom: 0;
}

.w-row .key {
    color: var(--text-secondary);
}

.w-row .val {
    color: var(--accent-color);
    font-weight: bold;
}

.w-row .val.status-ok {
    color: var(--terminal-green);
}

/* ================= TWO COLUMN INFO ================= */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 26px;
}

.info-box {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 34px 36px;
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.info-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-header-icon svg,
.info-header-icon .icon {
    width: 22px;
    height: 22px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--nav-list-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    transition: all var(--transition-speed) ease;
}

.spec-row:hover {
    border-color: var(--accent-color);
    background: var(--accent-light);
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

.spec-text .label {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.spec-text .value {
    font-size: 15px;
    font-weight: 600;
}

.social-desc {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.social-links a {
    background: var(--nav-list-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    background: var(--accent-light);
}

.social-links .name {
    font-size: 14px;
    font-weight: 700;
}

.social-links .sub {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    margin: 80px 0 38px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header .sub {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 8px;
}

/* ================= PROJECT CARD ================= */
.project-card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 44px 48px;
    display: flex;
    gap: 36px;
    backdrop-filter: blur(10px);
}

.project-logo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: var(--card-solid);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-body h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.project-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.p-chip {
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--nav-list-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.p-chip.highlight {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
}

.project-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 22px;
}

.project-body p strong {
    color: var(--text-primary);
}

.checklist {
    display: flex;
    gap: 34px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.checklist span {
    font-size: 13.5px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist .icon,
.checklist svg {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
}

/* ================= BUTTONS ================= */
.project-actions {
    display: flex;
    gap: 14px;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
}

.btn .icon,
.btn svg {
    width: 18px;
    height: 18px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-solid i {
    color: var(--bg-color) !important;
}

.btn i {
    color: var(--accent-color);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: var(--item-hover);
}

.btn-solid {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-solid:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ================= GITHUB REPOS ================= */
.repo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.repo-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 26px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.repo-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.repo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.repo-name {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
}
/* İkonların görünmesi ve renklenmesi için */
.repo-card .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    stroke: var(--accent-color); /* Mor tema rengi */
    fill: none;
    stroke-width: 2;
}

.repo-card .icon.filled {
    fill: var(--accent-color);
    stroke: none;
}

/* Tüm Repoları Gör Butonunu Tam Ortalamak İçin */
.github-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}
.repo-name .icon,
.repo-name svg {
    color: var(--text-secondary);
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.repo-private {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--nav-list-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.repo-desc {
    color: var(--text-secondary);
    font-size: 13.5px;
    line-height: 1.5;
    min-height: 40px;
    flex-grow: 1;
}

.repo-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.repo-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.repo-meta .icon,
.repo-meta svg {
    width: 14px;
    height: 14px;
}

.lang-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    background: var(--accent-color);
}

/* ================= TEMA TOGGLE BUTONU ================= */
.theme-toggle-btn {
    background: var(--nav-list-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    outline: none;
}

.theme-toggle-btn:hover {
    background: var(--item-hover);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
}

/* Dark/Light tema geçiş ikonları */
body.light-theme .sun-icon {
    display: none;
}
body.light-theme .moon-icon {
    display: block;
}

body:not(.light-theme) .sun-icon {
    display: block;
}
body:not(.light-theme) .moon-icon {
    display: none;
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= FOOTER ================= */
.footer {
    background-color: var(--sidebar-bg);
    padding: 40px 20px 20px;
    border-radius: 16px;
    max-width: calc(100% - 20px);
    backdrop-filter: blur(12px);
    margin: 20px auto;
    box-shadow: none; /* Shadow kaldırıldı */
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Sütun Düzeni */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Marka Bölümü */
.brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.brand-title.bold {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-title.tracking {
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 10px;
    color: var(--text-secondary);
}

.ampersand {
    color: var(--text-secondary);
    font-size: 14px;
}

.secondary-brand {
    margin-top: 4px;
}

.slogan {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

/* Sütun Başlıkları */
.col-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.col-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-secondary);
    opacity: 0.4;
}

/* Tıklanabilir Bağlantı Listesi */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Sosyal Medya & FontAwesome İkonları */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition:
        background-color 0.2s,
        color 0.2s;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.social-icon:hover {
    background-color: var(--accent-light);
    color: var(--accent-color);
}

/* Orta Metin */
.footer-middle {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin: 30px 0;
}

.highlight-bold {
    font-weight: 800;
    color: var(--text-primary);
}

.forum-link {
    color: #ff4a4a;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.forum-link:hover {
    text-decoration: underline;
}

/* Alt Telif Alanı */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom p {
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.powered-by .icon {
    font-size: 10px;
}

.brand-red {
    color: #ef4444;
    font-weight: 700;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
    .hero-corporate {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tags,
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    .info-grid,
    .repo-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        flex-direction: column;
    }
    nav.links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        background: var(--header-bg);
        backdrop-filter: blur(18px);
        border: 1px solid var(--border-color);
        border-radius: 18px;
        flex-direction: column;
        padding: 10px;
        display: none;
        gap: 4px;
    }
    nav.links.open {
        display: flex;
    }
    nav.links a {
        width: auto;
        min-width: auto;
        height: auto;
        justify-content: flex-start;
        padding: 10px 12px;
        gap: 10px;
    }
    nav.links a .nav-label {
        max-width: none;
        opacity: 1;
        transform: none;
    }
    nav.links a:hover,
    nav.links a.active {
        width: auto;
        padding: 10px 12px;
        transform: none;
    }
    .nav-toggle {
        display: flex;
    }
    header.navbar {
        position: relative;
    }
}

/* ============ GLOBAL IKON DÜZELTME ============ */

/* SVG ve Icon Elementlerinin Genel Boyut ve Renk Ayarları */
svg,
.icon,
i[class^="fa-"],
i[class*=" fa-"] {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* Kart Başlık İkonları (Uzmanlık & Topluluk başlıklarındaki siyah kutular) */
.section-title svg,
.card-header svg,
h3 svg,
h3 i,
.icon-box svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.4));
}

/* GitHub & Discord Sosyal Kart İkonları */
.social-card svg,
.community-card svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
    margin-bottom: 8px;
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.social-card:hover svg,
.community-card:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
    fill: #c084fc;
}

/* Proje Kartı Büyük İkonu (V-Manager solundaki şimşek/kutu ikonu) */
.project-icon-box,
.product-icon {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-box svg,
.product-icon svg {
    width: 28px;
    height: 28px;
    stroke: #c084fc;
    fill: none;
    stroke-width: 2;
}

/* Özellik Checkmark İkonları (Otomatik Kurulum, Mod Yönetimi vs.) */
.feature-list svg,
.feature-item svg,
.check-icon {
    width: 16px;
    height: 16px;
    stroke: #c084fc;
    stroke-width: 2.5;
    fill: none;
    margin-right: 6px;
}
