/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Chrome Couture Palette */
    --black-onyx: #0B0B0D;
    --mirror-chrome: #C5C7CE;
    --poison-plum: #5A1E6B;
    --electric-fuchsia: #FF2FBF;
    --soft-pearl: #F6F3F7;
    
    /* Functional Color Variables */
    --primary-color: #C5C7CE;        /* Mirror Chrome - base */
    --secondary-color: #FF2FBF;      /* Electric Fuchsia - micro accents */
    --accent-color: #FF2FBF;         /* Electric Fuchsia - micro accents */
    --text-color: #5A1E6B;           /* Poison Plum - sophistication */
    --text-light: ##B4B5B6;           /* Mirror Chrome for lighter text */
    --bg-color: #0B0B0D;             /* Black Onyx - base background */
    --bg-light: #F6F3F7;             /* Soft Pearl - light sections */
    --border-color: #C5C7CE;         /* Mirror Chrome */
    
    /* Chrome Effects */
    --chrome-gradient: linear-gradient(135deg, #E8EAED 0%, #C5C7CE 25%, #A8ABB2 50%, #C5C7CE 75%, #E8EAED 100%);
    --chrome-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    --mirror-sheen: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(197,199,206,0.2) 50%, rgba(255,255,255,0.1) 100%);
    
    /* Glow Effects */
    --neon-glow: 0 0 10px rgba(255, 47, 191, 0.5), 0 0 20px rgba(255, 47, 191, 0.3), 0 0 30px rgba(255, 47, 191, 0.1);
    --soft-glow: 0 0 20px rgba(197, 199, 206, 0.3), 0 0 40px rgba(197, 199, 206, 0.1);
    --chrome-glow: 0 4px 15px rgba(197, 199, 206, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow: 0 4px 6px rgba(11, 11, 13, 0.1);
    --shadow-lg: 0 10px 25px rgba(11, 11, 13, 0.15);
    --geometric-shadow: 0 8px 0 rgba(11, 11, 13, 0.1), 0 12px 20px rgba(11, 11, 13, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    letter-spacing: 0.01em;
}

/* ===== EDITORIAL TYPOGRAPHY SYSTEM ===== */

/* HEADERS: Tall, Editorial, Fashion-Magazine Inspired (Bodoni Moda) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', 'Didot', 'Bodoni MT', serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-optical-sizing: auto;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1.125rem;
    font-weight: 500;
}

/* SUB-HEADERS: Clean Geometric Sans-Serif (Neue Montreal) */
.section-subtitle, 
.typing-text, 
.nav-links a,
.skill-category h3,
.contact-item h4,
.info-item strong,
.project-info h3 {
    font-family: 'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.4;
}

/* BODY TEXT: Minimal, Modern (Inter) */
p, 
.hero-description, 
.about-text p, 
.contact-item p, 
.form-group input, 
.form-group textarea, 
.btn,
.tag,
.project-info p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: var(--soft-glow);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--chrome-gradient);
    margin: 20px auto;
    border-radius: 0;
    box-shadow: var(--chrome-glow);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--chrome-shine);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.section-title:hover::before {
    opacity: 0.3;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 243, 247, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 0 rgba(197, 199, 206, 0.3), var(--chrome-glow);
    border-bottom: 1px solid rgba(197, 199, 206, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--chrome-gradient);
    opacity: 0.5;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h2 {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-family: 'Bodoni Moda', serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(197, 199, 206, 0.3);
    position: relative;
}

.logo h2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: var(--soft-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--chrome-gradient);
    transition: width 0.3s ease;
    box-shadow: var(--neon-glow);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--electric-fuchsia);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: var(--neon-glow);
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: var(--soft-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E8EAED 0%, #C5C7CE 25%, #5A1E6B 75%, #0B0B0D 100%);
    color: #FF2FBF;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mirror-sheen);
    pointer-events: none;
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 47, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: 'Bodoni Moda', serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(197, 199, 206, 0.3);
    position: relative;
    z-index: 1;
}

.highlight {
    color: #fbbf24;
}

.typing-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e7ff;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: var(--soft-glow);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Neue Montreal', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--chrome-shine);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--chrome-gradient);
    color: var(--text-color);
    border: 2px solid rgba(197, 199, 206, 0.5);
    box-shadow: var(--chrome-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--chrome-glow), var(--neon-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: var(--electric-fuchsia);
}

.btn-primary i {
    color: var(--electric-fuchsia);
    filter: drop-shadow(var(--neon-glow));
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--chrome-gradient);
    color: var(--text-color);
    border-color: var(--electric-fuchsia);
    box-shadow: var(--neon-glow);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(197, 199, 206, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--chrome-gradient);
    transition: all 0.3s ease;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    color: var(--text-color);
    transform: translateY(-5px);
    box-shadow: var(--chrome-glow), var(--neon-glow);
    border-color: var(--electric-fuchsia);
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    border: 3px solid rgba(197, 199, 206, 0.3);
    box-shadow: 0 0 30px rgba(197, 199, 206, 0.4), 
                0 0 60px rgba(255, 47, 191, 0.2),
                0 10px 25px rgba(11, 11, 13, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.about-image img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mirror-sheen);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.about-image img:hover {
    border-color: rgba(255, 47, 191, 0.5);
    box-shadow: 0 0 40px rgba(197, 199, 206, 0.6), 
                0 0 80px rgba(255, 47, 191, 0.3),
                0 15px 35px rgba(11, 11, 13, 0.2);
    transform: scale(1.02);
}

.about-image img:hover::before {
    opacity: 0.2;
}

.about-image img:first-child {
    animation: fadeInUp 0.8s ease;
}

.about-image img:last-child {
    animation: fadeInUp 1s ease;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 300;
    filter: drop-shadow(0 0 5px rgba(197, 199, 206, 0.5));
}

/* ===== SKILLS SECTION ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.skill-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 247, 0.9) 100%);
    padding: 35px;
    border-radius: 0;
    border: 2px solid rgba(197, 199, 206, 0.3);
    box-shadow: var(--geometric-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--chrome-gradient);
    box-shadow: var(--chrome-glow);
}

.skill-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--electric-fuchsia) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
    border-color: var(--electric-fuchsia);
    box-shadow: var(--geometric-shadow), var(--neon-glow);
}

.skill-category:hover::after {
    opacity: 1;
}

.skill-category h3 {
    margin-bottom: 25px;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.skill-category h3 i {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    filter: drop-shadow(0 0 3px rgba(255, 47, 191, 0.5));
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}

.skill-bar {
    height: 10px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, rgba(246, 243, 247, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    padding: 8px 18px;
    border-radius: 0;
    font-size: 0.85rem;
    color: var(--text-color);
    border: 1px solid rgba(197, 199, 206, 0.4);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--electric-fuchsia);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tag:hover {
    border-color: var(--electric-fuchsia);
    box-shadow: var(--neon-glow);
    transform: translateX(3px);
}

.tag:hover::before {
    opacity: 1;
}

/* ===== EMPLOYMENT HISTORY SECTION ===== */
.employment-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 247, 0.9) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(197, 199, 206, 0.3);
    box-shadow: var(--geometric-shadow);
}

.employment-section h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.employment-section h3:first-child {
    margin-top: 0;
}

.employment-section p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 247, 0.9) 100%);
    border-radius: 0;
    overflow: hidden;
    border: 2px solid rgba(197, 199, 206, 0.3);
    box-shadow: var(--geometric-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mirror-sheen);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--geometric-shadow), var(--chrome-glow);
    border-color: var(--electric-fuchsia);
}

.project-card:hover::before {
    opacity: 0.3;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.2);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 47, 191, 0.3), 0 0 20px rgba(197, 199, 206, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 47, 191, 0.4), 0 0 30px rgba(197, 199, 206, 0.3);
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 199, 206, 0.1), 0 0 15px rgba(255, 47, 191, 0.1);
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 47, 191, 0.3), 0 0 15px rgba(197, 199, 206, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 47, 191, 0.4), 0 0 25px rgba(197, 199, 206, 0.4);
}

.scroll-top.active {
    display: flex;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .typing-text {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin: 0 auto;
    }

    .about-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .typing-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .projects-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
