/* CV Page Styles */

.cv-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 100px 20px 60px;
}

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

.cv-header {
    text-align: center;
    margin-bottom: 40px;
}

.cv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.cv-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
    transform: translateY(2px);
}

.cv-viewer {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    height: 80vh;
    min-height: 600px;
}

.cv-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cv-footer {
    text-align: center;
    padding: 30px 0;
}

.cv-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-section {
        padding: 80px 15px 40px;
    }

    .cv-title {
        font-size: 36px;
    }

    .cv-subtitle {
        font-size: 18px;
    }

    .cv-viewer {
        height: 70vh;
        min-height: 500px;
    }

    .download-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cv-title {
        font-size: 28px;
    }

    .cv-subtitle {
        font-size: 16px;
    }

    .cv-viewer {
        height: 60vh;
        min-height: 400px;
    }
}
