/*
Theme Name: CV Portfolio Child
Theme URI: https://example.com/cv-portfolio-child
Template: twentytwentyfive
Author: Antigravity
Author URI: https://google.com
Description: A stylish, modern CV portfolio child theme based on Twenty Twenty-Five.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cv-portfolio-child
*/

/* Custom additions below */

.cv-hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--wp--preset--color--base) 0%, var(--wp--preset--color--contrast-2) 100%);
    padding: var(--wp--preset--spacing--80);
    border-radius: var(--wp--preset--spacing--30);
    margin-bottom: var(--wp--preset--spacing--60);
}

.cv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--wp--preset--color--contrast-3);
    padding: var(--wp--preset--spacing--40);
    border-radius: var(--wp--preset--spacing--20);
    background: var(--wp--preset--color--base);
}

.cv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cv-experience-date {
    font-weight: 700;
    color: var(--wp--preset--color--accent-1);
    text-transform: uppercase;
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: 0.1em;
}
