:root {
    --background-color: #180918;
    --background-color2: #2e112e;
    --accent-color: #ba3bb7;
    --accent-color3: #782877;
    --accent-color4: #631f62;
}

body {
    background-color: var(--background-color);
    color: white;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(46, 17, 46, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.navbar-brand img {
    max-height: 40px;
    transition: transform 0.3s ease;
}

.nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.social-icon {
    color: white;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Header Styles */
.cv-header {
    background: var(--background-color2);
    padding: 4rem 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.cv-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, var(--accent-color4) 0%, transparent 40%);
    opacity: 0.2;
}

.profile-section {
    position: relative;
    z-index: 1;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(186, 59, 183, 0.3);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    background: var(--background-color2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color3);
}

/* Section Styles */
.cv-section {
    background: var(--background-color2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.cv-section:hover {
    transform: translateY(-5px);
}

.cv-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Timeline Style */
.timeline-item {
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
}

/* Skills Style */
.skill-item {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--accent-color4);
    transform: translateX(10px);
}

/* Download Button */
.download-cv {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.download-cv:hover {
    background: var(--accent-color3);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(186, 59, 183, 0.3);
}

/* Language Progress */
.language-progress {
    height: 6px;
    background: var(--background-color);
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Social Icons */
.social-icons a {
    color: white;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}