/* ============================================
   Premium Portfolio CSS
   Inspired by 2025 Veda - Luxurious Dark Theme
   ============================================ */
/* Mobil Optimizasyonu */

/* CSS Variables - Premium Gold & Purple Palette */
:root {
    /* Premium Color Palette */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --rose-gold: #E8B4B8;
    --deep-purple: #1a0a2e;
    --royal-purple: #4a1c6f;
    --midnight: #0d0d1a;
    --charcoal: #121218;
    --cream: #FAF6F0;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* UI Colors */
    --bg-glass: rgba(26, 10, 46, 0.6);
    --bg-card: rgba(26, 10, 46, 0.8);
    --border-color: rgba(212, 175, 55, 0.2);
    --border-glow: rgba(212, 175, 55, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-shine: linear-gradient(135deg, var(--cream) 0%, var(--gold) 25%, var(--cream) 50%, var(--gold) 75%, var(--cream) 100%);
    --gradient-purple: linear-gradient(135deg, var(--deep-purple), var(--royal-purple));

    /* Effects */
    --shadow-glow: 0 0 60px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
@media (max-width: 600px) {
    .category-block, .download-card {
        backdrop-filter: none !important; /* Bulanıklığı kaldır */
        background: rgba(30, 41, 59, 0.95); /* Düz ama şık bir renk ver */
    }
    header h1 {
        font-size: 1.8rem; /* Yazı boyutunu küçült */
    }
}
body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--midnight);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Premium Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(74, 28, 111, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(74, 28, 111, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 50%, var(--midnight) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Floating Gold Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: floatUp 20s infinite;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--midnight);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 4s linear infinite;
    letter-spacing: -1px;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(74, 28, 111, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
}

.hero-greeting {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--midnight);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2);
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow:
            0 0 50px rgba(212, 175, 55, 0.6),
            0 0 100px rgba(212, 175, 55, 0.3);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    background: var(--gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 4s linear infinite;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--midnight);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--cream);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-shape {
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.9;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    filter: blur(120px);
    opacity: 0.25;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.25;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.35;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 4s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 24px auto 0;
    border-radius: 3px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(74, 28, 111, 0.08) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
}

.image-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(74, 28, 111, 0.5));
    border: 1px solid var(--border-glow);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--gold);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.image-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.4;
}

.about-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--cream);
    letter-spacing: -1px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================
   Skills Section
   ============================================ */
.skills {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.skill-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(18, 18, 24, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 48px 36px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 79, 38, 0.2) 0%, rgba(227, 79, 38, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #e34f26;
    margin-bottom: 28px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(227, 79, 38, 0.2);
}

.skill-card:hover .skill-icon {
    transform: scale(1.1);
}

.skill-icon.css-icon {
    background: linear-gradient(135deg, rgba(38, 77, 228, 0.2) 0%, rgba(38, 77, 228, 0.1) 100%);
    color: #264de4;
    box-shadow: 0 8px 25px rgba(38, 77, 228, 0.2);
}

.skill-icon.js-icon {
    background: linear-gradient(135deg, rgba(240, 219, 79, 0.2) 0%, rgba(240, 219, 79, 0.1) 100%);
    color: #f0db4f;
    box-shadow: 0 8px 25px rgba(240, 219, 79, 0.2);
}

.skill-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cream);
    letter-spacing: -0.5px;
}

.skill-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #e34f26, #f06529);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.skill-progress.css-progress {
    background: linear-gradient(90deg, #264de4, #2965f1);
}

.skill-progress.js-progress {
    background: linear-gradient(90deg, #f0db4f, #ffd700);
}

.skill-percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.skill-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(180deg, transparent 0%, rgba(74, 28, 111, 0.08) 50%, transparent 100%);
}

.contact-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: -40px auto 60px;
    line-height: 1.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(18, 18, 24, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px 32px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.25) 0%, rgba(193, 53, 132, 0.15) 100%);
    box-shadow: 0 20px 60px rgba(225, 48, 108, 0.25);
}

.social-card.email:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.social-card.github:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.social-card.spotify:hover {
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.25) 0%, rgba(30, 215, 96, 0.15) 100%);
    box-shadow: 0 20px 60px rgba(30, 215, 96, 0.2);
}

.social-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.instagram .social-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.email .social-icon {
    background: var(--gradient-gold);
    color: var(--midnight);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.github .social-icon {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spotify .social-icon {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.3);
}

.social-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.social-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}

.social-handle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.social-arrow {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-card:hover .social-arrow {
    color: var(--gold);
    transform: translateX(6px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.skill-card:nth-child(1) {
    animation-delay: 0.1s;
}

.skill-card:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-card:nth-child(3) {
    animation-delay: 0.3s;
}

.social-card:nth-child(1) {
    animation-delay: 0.1s;
}

.social-card:nth-child(2) {
    animation-delay: 0.15s;
}

.social-card:nth-child(3) {
    animation-delay: 0.2s;
}

.social-card:nth-child(4) {
    animation-delay: 0.25s;
}

/* Page transition effect */
.page-transition {
    animation: pageIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-shape {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 26, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.6rem;
        font-family: 'Syne', sans-serif;
        font-weight: 700;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 80px 20px 40px;
    }

    .hero-shape {
        width: 250px;
        height: 250px;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-greeting {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .skill-card {
        padding: 36px 28px;
    }

    .social-card {
        padding: 24px;
    }

    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .image-placeholder {
        width: 260px;
        height: 260px;
        font-size: 4.5rem;
    }
}