/* ═══════════════════════════════════════════════════════════════════════════
   MODERN PORTFOLIO - Premium Design System
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-primary: #050816;
    --bg-secondary: #0a0f1e;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-dark: linear-gradient(180deg, #050816 0%, #0a0f1e 50%, #050816 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(99, 102, 241, 0.3);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { 
    background: var(--gradient-primary); 
    border-radius: 3px;
}
html { 
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-primary);
}

/* Custom cursor disabled - using system cursor */
.ozel-mouse,
.ozel-mouse-nokta {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE & BACKGROUND
   ═══════════════════════════════════════════════════════════════════════════ */

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Gradient Mesh Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #050816;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 10% -30%, rgba(99, 102, 241, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 90% 0%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 0% 80%, rgba(6, 182, 212, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

/* Grid Pattern Overlay */
.gradient-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Noise Texture Overlay */
.gradient-bg .noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hide old elements */
.stars,
.shooting-star {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-logo { display: none !important; }

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
    background: rgba(5, 8, 22, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-links a:hover::before {
    width: 30px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-img {
    position: relative;
}

.hero-img::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    filter: blur(40px);
    z-index: -1;
}

.hero-img img {
    max-width: 100%;
    width: 420px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px var(--border-subtle);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img:hover img {
    transform: scale(1.02) translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--accent-glow),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTAINERS & SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SKILLS / YETENEKLER
   ═══════════════════════════════════════════════════════════════════════════ */

.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    background: var(--bg-glass);
    padding: 50px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skills-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.skill-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.skill-tag::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-secondary);
    border-radius: 50px;
    z-index: -1;
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.skill-tag:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-glow);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px var(--border-glow);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-subtle);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.05);
}

.p-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.p-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
}

.p-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.p-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.p-link:hover {
    color: var(--accent-tertiary);
    gap: 12px;
}

.p-link::after {
    content: '→';
    transition: transform 0.3s;
}

.p-link:hover::after {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVIEWS / YORUMLAR
   ═══════════════════════════════════════════════════════════════════════════ */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.review-card {
    position: relative;
    background: var(--bg-glass);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    color: var(--accent-primary);
    opacity: 0.15;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.review-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-info span {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 500;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HAKKIMDA & İLETİŞİM BOXES
   ═══════════════════════════════════════════════════════════════════════════ */

.hakkimda-kutu,
.iletisim-kutu {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hakkimda-kutu::before,
.iletisim-kutu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hakkimda-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hakkimda-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.hakkimda-text h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.bilgi-kutu {
    background: rgba(99, 102, 241, 0.08);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bilgi-kutu:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateX(8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.bilgi-baslik {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

.bilgi-baslik i {
    font-size: 14px;
}

.bilgi-deger {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   İLETİŞİM KARTLARI
   ═══════════════════════════════════════════════════════════════════════════ */

.iletisim-kart {
    display: flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    padding: 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.iletisim-kart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.iletisim-kart:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.iletisim-kart:hover::before {
    opacity: 0.08;
}

.ikon-kutu {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 18px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.iletisim-kart:hover .ikon-kutu {
    transform: scale(1.1) rotate(5deg);
}

.kart-detay {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.kart-baslik {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kart-deger {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MUSIC BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.music-btn { 
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 50%; 
    color: var(--accent-primary);
    font-size: 22px;
    cursor: pointer; 
    z-index: 10005; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.music-btn:hover { 
    transform: scale(1.1); 
    background: var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.music-btn.playing { 
    border-color: #22c55e; 
    color: #22c55e; 
    animation: pulse 2s infinite; 
}

.music-btn.playing i {
    animation: muzikDon 3s linear infinite; 
}

.music-btn.playing:hover { 
    background: #22c55e; 
    color: var(--text-primary);
}

@keyframes muzikDon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 100%);
}

footer p {
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS & EFFECTS
   ═══════════════════════════════════════════════════════════════════════════ */

.gizli {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sahneye-cik {
    opacity: 1;
    transform: translateY(0);
}

.blur-efekt {
    filter: blur(4px);
    pointer-events: none;
}

/* RGB Premium Effects */
@keyframes rgbDonme {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rgbAkim {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.premium-rgb {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4, #22c55e, #eab308, #ef4444, #6366f1);
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rgbAkim 4s linear infinite;
}

.premium-rgb-hover:hover {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4, #22c55e, #eab308, #ef4444, #6366f1) !important;
    background-size: 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: rgbAkim 3s linear infinite !important;
    font-weight: bold !important;
}

.at-link {
    font-weight: 600;
    color: var(--accent-primary);
    transition: all 0.3s;
    display: inline-block;
}

.at-link:hover {
    color: var(--accent-tertiary);
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        margin: 60px auto;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img img {
        width: 300px;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 20px;
        margin: 80px auto;
    }

    .skills-wrapper {
        padding: 30px 20px;
    }

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

    .hakkimda-kutu,
    .iletisim-kutu {
        padding: 24px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .nav-links a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
}
