/* Light Mode Enhancements to match Dark Mode */

/* Card effects for light mode similar to dark mode */
.project-item,
.timeline-content,
.academic-project,
.contact-info-item,
.contact-form {
    border: 1px solid rgba(74, 99, 231, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* Subtle border effect on hover for light mode */
.project-item:hover,
.timeline-content:hover,
.academic-project:hover,
.contact-info-item:hover {
    border-color: rgba(74, 99, 231, 0.3);
    box-shadow: 0 8px 20px rgba(74, 99, 231, 0.1);
    transform: translateY(-5px);
}

/* Timeline item enhancement for light mode */
.timeline-item::after {
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    box-shadow: 0 0 10px rgba(74, 99, 231, 0.5);
    transform: scale(1.1);
}

/* Gradient buttons for light mode */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #6d83f2);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #4361ee, var(--primary-color));
    transform: translateY(-3px);
}

/* Section title enhancement for light mode */
.section-header h2 {
    position: relative;
}

.section-line {
    background: linear-gradient(90deg, var(--primary-color), #6d83f2);
    height: 4px;
    width: 80px;
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-header:hover .section-line {
    width: 120px;
}

/* Custom scrollbar for light mode */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #c7d0f8;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Menu item enhancement */
.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-item:hover::after,
.menu-item.active::after {
    width: 100%;
}

/* Active menu item highlight for both modes */
.menu-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

[data-theme="dark"] .menu-item.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(83, 109, 254, 0.3);
}

/* Form input enhancements */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(74, 99, 231, 0.2);
    border-color: var(--primary-color);
}

/* Form button enhancement */
.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), #6d83f2);
    border: none;
    padding: 12px 30px;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #4361ee, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 99, 231, 0.2);
}
