/* =========================
   A4 CV BASE FIX (IMPORTANT)
   ========================= */

#cv {
    width: 794px; /* stable A4 px size */
    min-height: 1123px;
    margin: auto;
    background: white;
    padding: 30px;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    overflow: hidden;
}

/* =========================
   HEADER
   ========================= */

.header {
    text-align: center;
    padding: 20px;
    border-bottom: 3px solid var(--theme);
    margin-bottom: 20px;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header h3 {
    font-size: 16px;
    color: #666;
}

/* =========================
   SECTIONS
   ========================= */

section {
    margin-bottom: 15px;
}

section h2 {
    font-size: 16px;
    color: var(--theme);
    border-left: 4px solid var(--theme);
    padding-left: 10px;
    margin-bottom: 8px;
}

/* =========================
   PROFILE IMAGE
   ========================= */

#cvProfilePic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 10px auto;
    border: 3px solid var(--theme);
    background: #fff;
}

/* =========================
   SKILL SYSTEM (FIXED)
   ========================= */

.skill {
    margin-bottom: 10px;
}

.skill span {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.fill {
    height: 100%;
    width: 0%;
    background: var(--theme);
    border-radius: 20px;
    transition: width 0.6s ease;
    display: block;
}

/* =========================
   MODERN TEMPLATE
   ========================= */

.modern .header {
    text-align: left;
    border-bottom: 3px solid var(--theme);
    margin-bottom: 50px;
}

.modern #cvProfilePic {
    float: right;
    margin: 0 0 10px 20px;
}

.modern section h2 {
    border-left: none;
    border-bottom: 2px solid var(--theme);
    padding-left: 0;
}

/* =========================
   PROFESSIONAL TEMPLATE
   ========================= */

.professional .header {
    text-align: left;
    background: #f5f7fb;
    padding: 20px;
    border-left: 6px solid var(--theme);
    border-bottom: none;
}

.professional #cvProfilePic {
    float: left;
    margin-right: 20px;
}

.professional section {
    margin-left: 160px;
}

/* =========================
   CREATIVE TEMPLATE
   ========================= */

.creative .header {
    background: linear-gradient(135deg, var(--theme), #111);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.creative section h2 {
    background: var(--theme);
    color: white;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}

.creative .header h3 {
    color: #ddd;
}