/* index.css */
/* Navigation styles */
.nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.social-icon {
    color: white;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Hero section animations */
.intro-photo {
    transition: all 0.5s ease;
}

.intro-photo:hover {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Skills Section */
.skills-section {
    background-color: var(--background-color2);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
}

.skill-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 0.7rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    min-width: 120px;
}

.skill-item:hover {
    transform: translateY(-10px);
    background: var(--accent-color4);
    box-shadow: 0 10px 30px rgba(186, 59, 183, 0.2);
}

.skill-level {
    width: 60px;
    height: 4px;
    background: var(--background-color2);
    margin: 10px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.skill-level::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.skill-item[data-level="4"] .skill-level::after { width: 80%; }
.skill-item[data-level="3"] .skill-level::after { width: 60%; }
.skill-item[data-level="2"] .skill-level::after { width: 40%; }

/* Projects Section */
.projects-preview {
    padding: 4rem 0;
}

.project-card {
    background: var(--background-color2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(186, 59, 183, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .skills-section { 
        padding: 2rem; 
    }
}