/* Downloadable Resume Button Styles */
.resume-download-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    position: relative;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.15),
        0 3px 6px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.resume-download-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.7s ease;
}

.resume-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 230, 118, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.resume-download-btn:hover:before {
    left: 100%;
}

.resume-download-btn:active {
    transform: translateY(-2px);
}

.resume-download-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.resume-download-btn:hover i {
    transform: translateY(-3px);
}

/* Download progress indicator */
.download-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: white;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 0 0 30px 30px;
}

.resume-download-btn.downloading .download-progress {
    animation: downloadProgress 2s ease forwards;
}

@keyframes downloadProgress {
    0% { width: 0%; }
    20% { width: 20%; }
    50% { width: 60%; }
    80% { width: 80%; }
    100% { width: 100%; }
}

/* Light theme adjustments */
body.light-theme .resume-download-btn {
    box-shadow: 
        0 10px 20px rgba(0, 176, 101, 0.15),
        0 3px 6px rgba(0, 0, 0, 0.05);
}

body.light-theme .resume-download-btn:hover {
    box-shadow: 
        0 15px 30px rgba(0, 176, 101, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Additional styling for the section */
.resume-download-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 230, 118, 0.3),
        rgba(0, 229, 255, 0.3),
        transparent
    );
}

.resume-section-title {
    display: inline-block;
    background-color: var(--bg-color);
    padding: 0 20px;
    position: relative;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}