﻿/* ==========================================================
   MyCV Design System
   ========================================================== */

:root {
    --cv-primary: #2563EB;
    --cv-primary-dark: #1D4ED8;
    --cv-background: #EEF3F8;
    --cv-card: #FFFFFF;
    --cv-text: #1F2937;
    --cv-muted: #6B7280;
    --cv-border: #D7DEE8;
    --cv-radius: 20px;
    --cv-shadow: 0 12px 35px rgba(0,0,0,.08);
}

html,
body {
    background: var(--cv-background);
    color: var(--cv-text);
}

/* Full page */

.cv-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Login card */

.cv-card {
    width: 430px;
    background: var(--cv-card);
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow);
    padding: 40px;
}

/* Logo */

.cv-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cv-primary);
    color: white;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

/* Titles */

.cv-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
}

.cv-subtitle {
    text-align: center;
    color: var(--cv-muted);
    margin-bottom: 35px;
}

/* Inputs */

.cv-input {
    margin-bottom: 18px;
}

/* Button */

.cv-button {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
}

/* Footer */

.cv-footer {
    text-align: center;
    color: var(--cv-muted);
    margin-top: 25px;
    font-size: .9rem;
}
/* Make li items align text + thumbs */
.lifestyle-list li {
    display: flex;
    align-items: center;
    gap: 15px; /* space between text and images */
    margin-bottom: 10px;
}

/* Container for thumbs */
.thumbs-inline {
    display: flex;
    gap: 10px;
}

/* Small circular thumbnails */
.thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.25s ease;
}

    /* Magnification on hover */
    .thumb:hover,
    .thumb:active {
        transform: scale(5.5); /* bigger magnification */
        border-radius: 0;
        object-fit: contain;
        z-index: 10;
    }

/* Profile image: circle normally */
.profile-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

    /* Profile image: full rectangle on hover */
    .profile-thumb:hover {
        border-radius: 0;
        width: auto;
        height: auto;
        object-fit: contain;
        transform: scale(1.5);
        position: relative;
        z-index: 10;
    }
/* Layout: text + icon */
.lang-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Text + circle in one line */
.doc-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Small circle */
.doc-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.25s ease;
    border:solid 1px ;
}

    /* Magnify on hover */
    .doc-thumb:hover,
    .doc-thumb:active {
        transform: scale(40); /* magnification */
        border-radius: 0; /* show full document shape */
        object-fit: contain; /* show whole image */
        z-index: 10;
        border:none;
    }
