/* ========================
   CV Website — styles.css
   Light dashboard aesthetic
   ======================== */

/* ---------- Design Tokens ---------- */
:root {
    --bg-page: #f1f5f9;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --text-dark: #0f172a;
    --text-main: #334155;
    --text-mid: #64748b;
    --text-light: #94a3b8;

    --accent: #3b82f6;
    --accent-soft: #dbeafe;
    --accent-text: #1d4ed8;

    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, .04);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, .06);
    --shadow-hover: 0 8px 20px -4px rgba(15, 23, 42, .1);

    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-text);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---------- CARD ---------- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card-section {
    padding: 20px 24px;
}

/* ============================================
   A/ SIDE NAV — elegant line style
   ============================================ */
.side-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-track {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: pointer;
    height: 24px;
    position: relative;
    justify-content: flex-end;
}

/* The line (default state) */
.nav-line {
    width: 18px;
    height: 2px;
    background: var(--text-light);
    border-radius: 1px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Label — hidden by default, slides in from left on hover */
.nav-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin-left: 0;
    text-align: right;
}

/* On hover: line grows, label slides in */
.nav-item:hover .nav-line {
    width: 26px;
    background: var(--accent);
}

.nav-item:hover .nav-label {
    max-width: 120px;
    opacity: 1;
    margin-right: 8px;
    padding: 2px 0;
    color: var(--accent-text);
    font-weight: 700;
}

/* Active state */
.nav-item.active .nav-line {
    width: 28px;
    height: 3px;
    background: var(--accent);
}

.nav-item.active .nav-label {
    color: var(--accent-text);
}

/* ---------- HEADER CARD ---------- */
.header-card {
    padding: 28px 28px;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.profile-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    flex-shrink: 0;
    transition: width var(--transition), height var(--transition);
}

.header-info {
    flex: 1;
    min-width: 0;
}

.header-info h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    margin-bottom: 2px;
    line-height: 1.2;
    transition: font-size var(--transition);
}

.tagline {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    transition: opacity var(--transition), max-height var(--transition), margin var(--transition);
    max-height: 100px;
    overflow: hidden;
}

.contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-row a:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    transform: translateY(-1px);
}

.contact-row a i {
    font-size: 11px;
    color: var(--text-mid);
}

.meta-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    transition: opacity var(--transition), max-height var(--transition);
    max-height: 100px;
    overflow: hidden;
}

/* ---------- HEADER COLLAPSED STATE ---------- */
.header-card {
    transition: padding var(--transition);
}

.header-card.collapsed {
    padding: 12px 28px;
}

.header-card.collapsed .header-content {
    gap: 16px;
}

.header-card.collapsed .profile-photo {
    width: 60px;
    height: 60px;
    border-width: 2px;
}

.header-card.collapsed h1 {
    font-size: 20px;
}

.header-card.collapsed .contact-row,
.header-card.collapsed .meta-chips {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--border-light);
}

.chip i {
    font-size: 10px;
}

.flag-icon {
    font-size: 14px;
    line-height: 1;
}

/* ---------- SECTION HEADINGS ---------- */
.card-section h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.card-section h2 i {
    color: var(--accent);
    font-size: 14px;
    width: 24px;
    text-align: center;
}

/* ---------- PROFILE ---------- */
.profile-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-main);
}

/* ---------- ENTRIES ---------- */
.entry {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.entry:first-of-type {
    padding-top: 0;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 12px;
}

.entry-left h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.entry-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.entry-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.role {
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 500;
}

.entry-right {
    text-align: right;
    flex-shrink: 0;
}

.date {
    display: block;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 500;
}

.location {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 11.5px;
    color: var(--text-light);
    margin-top: 1px;
}

.entry ul {
    padding-left: 16px;
    list-style: none;
}

.entry ul li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.55;
}

.entry ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.entry ul li strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ---------- ASSOCIATED-WITH LOGOS ---------- */
.assoc-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.assoc-logos img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
    filter: grayscale(30%) opacity(0.75);
    transition: all var(--transition);
}

.assoc-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* ============================================
   B/ EXCHANGE LIST (inside EDHEC bullet points)
   ============================================ */
.exchange-list {
    list-style: disc;
    padding-left: 18px;
    margin: 4px 0 0 0;
}

.exchange-list>li {
    margin-bottom: 4px;
    font-size: 12.5px;
    color: var(--text-main);
}

.exchange-with-logo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    list-style: none;
}

.exchange-with-logo>div {
    flex: 1;
}

.exchange-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.exchange-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.exchange-date {
    font-size: 11.5px;
    color: var(--text-mid);
    white-space: nowrap;
    flex-shrink: 0;
}

.exchange-detail {
    list-style: circle;
    padding-left: 18px;
    margin: 2px 0 0 0;
}

.exchange-detail li {
    font-size: 11.5px;
    color: var(--text-mid);
}

.exchange-loc {
    font-size: 11px;
    color: var(--text-mid);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---------- CERTIFICATE ROWS (grouped by institution) ---------- */
.cert-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cert-group {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    padding: 2px 0;
}

.cert-group:first-child {
    padding-top: 0;
}

.cert-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cert-group-issuer {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 125px;
    width: 125px;
    flex-shrink: 0;
    padding: 6px 16px 6px 0;
}

.cert-group-issuer img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}

.cert-group-issuer span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.cert-group-items {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-item {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    align-items: center;
    gap: 16px;
    padding: 1px 0;
}

.cert-name {
    display: flex;
    align-items: center;
}

.cert-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.4;
}

.cert-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    background: var(--bg-page);
    border: 1px solid var(--border);
    color: var(--text-main);
    transition: all var(--transition);
}

.cert-tag:hover {
    border-color: var(--accent);
    color: var(--accent-text);
    transform: translateY(-1px);
}

/* ---------- PROJECT SUB-HEADERS ---------- */
.projects-subheader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: -6px;
}

.projects-subheader:first-of-type {
    margin-top: 0;
}

.projects-subheader>i {
    font-size: 14px;
    color: var(--text-mid);
    opacity: 0.7;
}

.projects-subheader h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.3;
}

.projects-subheader-desc {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* ---------- PROJECT COLUMNS (side-by-side) ---------- */
.projects-columns {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.projects-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---------- PROJECT CARDS ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.project-card {
    background: transparent;
    border: none;
    padding: 8px 0;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.projects-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
}

.project-card:hover {
    transform: translateY(-2px);
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.project-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon i {
    font-size: 14px;
    color: var(--text-mid);
}

.project-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 3px;
}

.project-card-header>div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.project-card-header h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.project-type {
    font-size: 11px;
    color: var(--text-mid);
    font-weight: 500;
}

.project-date {
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.project-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.project-desc {
    font-size: 12.5px;
    color: var(--text-main);
    line-height: 1.55;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}

.project-tags .tag {
    font-size: 10.5px;
    padding: 3px 10px;
}

.btn-project {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-project:hover {
    background: var(--accent-text);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ============================================
   D/ SKILLS — hard | soft split
   ============================================ */
.skills-split {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.skills-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
}

.skill-group {
    flex: 1;
    min-width: 0;
}

.skill-group h3 {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.skill-sub {
    margin-bottom: 12px;
}

.skill-sub:last-child {
    margin-bottom: 0;
}

.skill-sub-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
}

.skill-sub-label i {
    font-size: 10px;
    color: var(--text-mid);
    opacity: 0.7;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-page);
    border: 1px solid var(--border);
    color: var(--text-main);
    transition: all var(--transition);
}

.tag:hover {
    border-color: var(--text-mid);
    color: var(--text-main);
    transform: translateY(-1px);
}

.tag.accent {
    background: var(--border);
    border-color: var(--text-light);
    color: var(--text-main);
    font-weight: 600;
}

/* ---------- LANGUAGES (separate section) ---------- */
.lang-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-item {
    display: grid;
    grid-template-columns: 22px 82px 1fr 42px;
    align-items: center;
    gap: 8px;
}

.lang-name {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dark);
}

.lang-bar {
    height: 5px;
    background: var(--border-light);
    border-radius: 99px;
    overflow: hidden;
}

.lang-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--text-light);
    transition: width 1s ease;
}

.lang-level {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
}

/* ---------- INTERESTS ---------- */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.interest-card {
    background: transparent;
    border: none;
    padding: 8px 0;
    text-align: center;
    transition: all var(--transition);
}

.interest-card:hover {
    transform: translateY(-2px);
}

.interest-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.interest-icon i {
    font-size: 18px;
    color: var(--text-mid);
}

.interest-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.interest-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.interest-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 6px;
}

.interest-list li:last-child {
    margin-bottom: 0;
}

.interest-list li i {
    font-size: 11px;
    color: var(--text-mid) !important;
    opacity: 0.6;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 24px;
    color: var(--text-light);
    font-size: 11.5px;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(1) {
    transition-delay: 0s;
}

.reveal:nth-child(2) {
    transition-delay: 0.06s;
}

.reveal:nth-child(3) {
    transition-delay: 0.12s;
}

.reveal:nth-child(4) {
    transition-delay: 0.18s;
}

.reveal:nth-child(5) {
    transition-delay: 0.24s;
}

.reveal:nth-child(6) {
    transition-delay: 0.30s;
}

.reveal:nth-child(7) {
    transition-delay: 0.36s;
}

.reveal:nth-child(8) {
    transition-delay: 0.42s;
}

.reveal:nth-child(9) {
    transition-delay: 0.48s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }

    .container {
        padding: 16px 12px 0;
        gap: 12px;
    }

    .header-card {
        padding: 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo {
        width: 80px;
        height: 80px;
    }

    .header-info h1 {
        font-size: 22px;
    }

    .contact-row {
        justify-content: center;
    }

    .meta-chips {
        justify-content: center;
    }

    .card-section {
        padding: 16px 18px;
    }

    .entry-header {
        flex-direction: column;
    }

    .entry-right {
        text-align: left;
    }

    .location {
        justify-content: flex-start;
    }

    .skills-split {
        flex-direction: column;
    }

    .skills-divider {
        width: 100%;
        height: 1px;
    }

    .cert-group {
        flex-direction: column;
    }

    .cert-group-issuer {
        min-width: auto;
        width: auto;
        padding: 8px 0 4px;
    }

    .cert-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .lang-item {
        grid-template-columns: 22px 70px 1fr 36px;
    }

    .projects-columns {
        flex-direction: column;
    }

    .projects-divider {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-info h1 {
        font-size: 20px;
    }

    .contact-row a {
        font-size: 11.5px;
        padding: 4px 10px;
    }

    .chip {
        font-size: 10.5px;
    }
}

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 122, 206, 0.35);
    z-index: 99;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 122, 206, 0.45);
}

/* ============================================
   PRINT STYLESHEET
   ============================================ */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    html {
        font-size: 10px;
    }

    body {
        background: #fff !important;
        padding: 0;
        margin: 0;
    }

    .side-nav,
    .scroll-top,
    footer {
        display: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 0 !important;
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 8px;
    }

    .card-section {
        padding: 14px 18px !important;
    }

    .header-card {
        padding: 14px 18px !important;
        position: static !important;
    }

    .entry {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .contact-row a,
    .chip {
        border: 1px solid #ccc !important;
    }

    .lang-bar-fill {
        background: var(--accent) !important;
    }

    .cert-tag:hover,
    .nav-item:hover,
    .exchange-item:hover,
    .assoc-logos img:hover {
        transform: none !important;
    }

    @page {
        margin: 0.5cm;
        size: A4;
    }
}