:root {
    /* New Aesthetic Colors */
    --bg-color: #050614;
    --card-bg: rgba(21, 22, 50, 0.4);
    --accent-pink: #d400ff;
    --accent-magenta: #ff00ff;
    --accent-blue: #4e00ff;
    --accent-yellow: #ffcc33;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --nav-bg: rgba(13, 14, 37, 0.8);
    
    /* Effects */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.82);
    --glow-pink: 0 0 20px rgba(212, 0, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: #050614;
    background-image: 
        radial-gradient(at 80% 15%, rgba(212, 0, 255, 0.4) 0px, transparent 50%),
        radial-gradient(at 20% 85%, rgba(78, 0, 255, 0.35) 0px, transparent 50%),
        radial-gradient(at 95% 50%, rgba(255, 204, 51, 0.2) 0px, transparent 30%),
        radial-gradient(at 5% 5%, rgba(0, 212, 255, 0.15) 0px, transparent 40%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.07;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
    border-radius: 2px;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: var(--nav-bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links li {
    margin-bottom: 1.5rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
    transform: translateX(10px);
}

.nav-links a.active {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Content Wrapper */
.main-content {
    margin-left: 250px;
}

/* Card Styles */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: all var(--transition-fast);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.08);
}

.card.pink:hover {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.card.blue:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(78, 0, 255, 0.2);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 70% 30%, rgba(212, 0, 255, 0.15), transparent 40%),
                radial-gradient(circle at 30% 70%, rgba(78, 0, 255, 0.15), transparent 40%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hero .highlight {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: sticky;
        top: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        background: rgba(13, 14, 37, 0.95);
    }
    .sidebar-logo {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    .nav-links {
        display: flex;
        gap: 1rem;
    }
    .nav-links li {
        margin-bottom: 0;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .main-content {
        margin-left: 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* Mobile menu could be added here later */
    }
    .container {
        padding: 0 1.5rem;
    }
}

/* Resume Button Float */
.resume-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-blue));
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
    z-index: 2000;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.resume-btn i {
    font-size: 1.2rem;
}

.resume-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
    color: white;
    border-color: white;
}

@media (max-width: 992px) {
    .resume-btn {
        top: auto;
        bottom: 2rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
