/* CV Page Styles */
.cv-page {
    min-height: 100vh;
    padding: 100px 2rem 4rem;
    background: var(--bg-color);
}

.cv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cv-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.cv-header .back-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.cv-header .back-button:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-50%) translateX(-5px);
}

.cv-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.cv-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* PDF Viewer */
.cv-pdf-viewer {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: calc(100vh - 300px);
    min-height: 600px;
}

.cv-pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cv-page {
        padding: 80px 1rem 2rem;
    }

    .cv-header .back-button {
        position: static;
        transform: none;
        margin-bottom: 1.5rem;
    }

    .cv-header h1 {
        font-size: 2rem;
    }

    .cv-actions {
        flex-direction: column;
    }

    .cv-pdf-viewer {
        height: calc(100vh - 250px);
        min-height: 400px;
    }
}

