2025-10-29 14:04:24 +00:00
|
|
|
/* CV Design - Original Style Recreation */
|
2025-10-20 08:54:21 +01:00
|
|
|
|
2025-10-31 11:06:38 +00:00
|
|
|
/* Import Quicksand Font */
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
:root {
|
2025-10-31 11:06:38 +00:00
|
|
|
--bg-gray: rgb(82, 86, 89);
|
2025-10-31 16:03:47 +00:00
|
|
|
--sidebar-gray: #d1d4d2;
|
2025-10-29 14:04:24 +00:00
|
|
|
--black-bar: #2b2b2b;
|
2025-10-20 08:54:21 +01:00
|
|
|
--paper-white: #ffffff;
|
2025-10-31 11:06:38 +00:00
|
|
|
--text-dark: rgb(0, 0, 0);
|
|
|
|
|
--text-gray: rgb(51, 51, 51);
|
2025-10-20 08:54:21 +01:00
|
|
|
--accent-blue: #0066cc;
|
|
|
|
|
--border-gray: #dddddd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', 'Source Sans Pro', -apple-system, system-ui, sans-serif;
|
2025-10-20 08:54:21 +01:00
|
|
|
background-color: var(--bg-gray);
|
2025-10-31 11:06:38 +00:00
|
|
|
color: rgb(41, 43, 44);
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 400;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
/* Single Black Top Bar */
|
2025-10-20 08:54:21 +01:00
|
|
|
.action-bar {
|
2025-10-29 14:04:24 +00:00
|
|
|
background: var(--black-bar);
|
|
|
|
|
color: white;
|
2025-10-20 08:54:21 +01:00
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 100;
|
2025-10-29 14:04:24 +00:00
|
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-bar-content {
|
2025-10-31 11:06:38 +00:00
|
|
|
max-width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
2025-10-20 08:54:21 +01:00
|
|
|
padding: 1rem 2rem;
|
2025-10-29 14:04:24 +00:00
|
|
|
display: grid;
|
2025-11-05 12:15:43 +00:00
|
|
|
grid-template-columns: auto auto auto 1fr;
|
2025-10-20 08:54:21 +01:00
|
|
|
align-items: center;
|
2025-10-31 11:06:38 +00:00
|
|
|
gap: 2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
2025-10-31 11:06:38 +00:00
|
|
|
justify-self: start;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn {
|
|
|
|
|
padding: 0.4rem 1rem;
|
2025-10-29 14:04:24 +00:00
|
|
|
border: 1px solid rgba(255,255,255,0.3);
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: white;
|
2025-10-31 11:06:38 +00:00
|
|
|
border-radius: 3px;
|
2025-10-20 08:54:21 +01:00
|
|
|
cursor: pointer;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
transition: all 0.2s ease;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn:hover {
|
2025-10-29 14:04:24 +00:00
|
|
|
background: rgba(255,255,255,0.1);
|
2025-10-31 11:06:38 +00:00
|
|
|
border-color: rgba(255,255,255,0.5);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn.active {
|
2025-10-31 11:06:38 +00:00
|
|
|
background: #27ae60 !important;
|
|
|
|
|
border-color: #27ae60 !important;
|
|
|
|
|
font-weight: 500;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-btn {
|
2025-10-31 11:06:38 +00:00
|
|
|
padding: 0.4rem 1rem;
|
2025-10-29 14:04:24 +00:00
|
|
|
background: transparent;
|
2025-10-20 08:54:21 +01:00
|
|
|
color: white;
|
2025-10-29 14:04:24 +00:00
|
|
|
border: 1px solid rgba(255,255,255,0.3);
|
2025-10-31 11:06:38 +00:00
|
|
|
border-radius: 3px;
|
2025-10-20 08:54:21 +01:00
|
|
|
cursor: pointer;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
2025-10-31 16:03:47 +00:00
|
|
|
text-decoration: none; /* For anchor tags */
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-btn:hover {
|
2025-10-29 14:04:24 +00:00
|
|
|
background: rgba(255,255,255,0.1);
|
2025-10-31 11:06:38 +00:00
|
|
|
border-color: rgba(255,255,255,0.5);
|
2025-10-31 16:03:47 +00:00
|
|
|
text-decoration: none; /* Override default anchor hover */
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-31 11:06:38 +00:00
|
|
|
/* CV Length Toggle - Center of action bar */
|
|
|
|
|
.cv-length-toggle {
|
2025-10-29 14:04:24 +00:00
|
|
|
display: flex;
|
2025-10-31 11:06:38 +00:00
|
|
|
gap: 0.5rem;
|
|
|
|
|
justify-self: center;
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-31 11:06:38 +00:00
|
|
|
.length-btn {
|
|
|
|
|
padding: 0.4rem 1rem;
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.4);
|
|
|
|
|
background: rgba(255,255,255,0.1);
|
2025-10-29 14:04:24 +00:00
|
|
|
color: white;
|
2025-10-31 11:06:38 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: all 0.2s ease;
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-31 11:06:38 +00:00
|
|
|
.length-btn:hover {
|
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
|
border-color: rgba(255,255,255,0.6);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.length-btn.active {
|
|
|
|
|
background: white;
|
|
|
|
|
color: #1a1a1a;
|
|
|
|
|
border-color: white;
|
|
|
|
|
font-weight: 600;
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Action buttons on right */
|
|
|
|
|
.action-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
align-items: center;
|
2025-10-31 11:06:38 +00:00
|
|
|
justify-self: end;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Loading Indicator */
|
|
|
|
|
.htmx-indicator {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.htmx-indicator.htmx-request {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
|
border: 2px solid #f3f3f3;
|
2025-10-29 14:04:24 +00:00
|
|
|
border-top: 2px solid white;
|
2025-10-20 08:54:21 +01:00
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
|
100% { transform: rotate(360deg); }
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
/* Main CV Container */
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-container {
|
2025-10-27 22:39:29 +00:00
|
|
|
width: 100%;
|
2025-11-04 19:40:03 +00:00
|
|
|
max-width: 100%; /* Full width to accommodate pages */
|
2025-10-29 14:04:24 +00:00
|
|
|
margin: 0 auto;
|
2025-10-31 11:06:38 +00:00
|
|
|
padding: 100px 0 0 0; /* Top padding to prevent sticky action bar overlap */
|
2025-11-04 19:40:03 +00:00
|
|
|
display: block; /* Changed from flex */
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-04 19:40:03 +00:00
|
|
|
/* CV Paper - Container for two-page layout */
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-paper {
|
2025-10-29 14:04:24 +00:00
|
|
|
width: 100%;
|
2025-11-04 19:40:03 +00:00
|
|
|
background: transparent; /* Remove white background - each page has its own */
|
|
|
|
|
box-shadow: none; /* Remove shadow - each page has its own */
|
2025-10-29 14:04:24 +00:00
|
|
|
margin: 0;
|
2025-10-27 22:39:29 +00:00
|
|
|
position: relative;
|
2025-11-04 19:40:03 +00:00
|
|
|
display: block; /* Changed from grid to block for stacking pages */
|
|
|
|
|
min-height: auto; /* Changed from 100vh */
|
2025-10-27 22:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Page break helpers */
|
|
|
|
|
.page-break {
|
|
|
|
|
page-break-after: always;
|
|
|
|
|
break-after: page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avoid-break {
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
break-inside: avoid;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
/* Sidebar - Left column */
|
|
|
|
|
.cv-sidebar {
|
|
|
|
|
background: var(--sidebar-gray);
|
|
|
|
|
padding: 2rem 1.5rem;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-section {
|
2025-10-20 08:54:21 +01:00
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
.sidebar-title {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 1.3em;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-weight: 500;
|
2025-10-31 16:03:47 +00:00
|
|
|
line-height: 1.2em;
|
2025-10-31 11:06:38 +00:00
|
|
|
margin-bottom: 8px;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
color: rgb(51, 51, 51);
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
.sidebar-content {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 0.9em;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-weight: 500;
|
|
|
|
|
line-height: 1.5;
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.skill-item {
|
|
|
|
|
margin-bottom: 0.3rem;
|
2025-10-31 11:06:38 +00:00
|
|
|
color: rgb(0, 0, 0);
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Main Content - Right column */
|
|
|
|
|
.cv-main {
|
|
|
|
|
background: var(--paper-white);
|
|
|
|
|
padding: 2rem 2.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-31 11:06:38 +00:00
|
|
|
/* Professional Title Badges - Spans Both Columns */
|
|
|
|
|
.cv-title-badges-header {
|
|
|
|
|
grid-column: 1 / -1; /* Span all columns */
|
2025-10-31 13:18:53 +00:00
|
|
|
background: #303030 !important; /* Elegant dark gray */
|
2025-10-31 16:03:47 +00:00
|
|
|
padding: 10px 20px;
|
2025-10-31 11:06:38 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2025-10-31 16:03:47 +00:00
|
|
|
gap: 0;
|
2025-10-31 11:06:38 +00:00
|
|
|
border-bottom: 2px solid #34495e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-badge {
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #ccc;
|
2025-10-31 11:06:38 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-separator {
|
2025-10-31 16:03:47 +00:00
|
|
|
color: #ccc;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -1px;
|
2025-10-31 11:06:38 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
/* Header with photo and name */
|
|
|
|
|
.cv-header {
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-header-content {
|
|
|
|
|
display: flex;
|
2025-10-31 11:06:38 +00:00
|
|
|
justify-content: space-between;
|
2025-10-29 14:04:24 +00:00
|
|
|
align-items: flex-start;
|
2025-10-31 11:06:38 +00:00
|
|
|
gap: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-header-left {
|
|
|
|
|
flex: 1;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-photo {
|
2025-10-29 14:04:24 +00:00
|
|
|
width: 150px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
flex-shrink: 0;
|
2025-10-27 22:32:32 +00:00
|
|
|
overflow: hidden;
|
2025-10-31 11:06:38 +00:00
|
|
|
border: 3px solid white;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-photo img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-name {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 2.2em;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 400;
|
2025-10-31 11:06:38 +00:00
|
|
|
line-height: 1.1;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
color: rgb(0, 0, 0);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
.cv-experience-years {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 0.9em;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-weight: 500;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
color: rgb(0, 0, 0);
|
2025-10-29 14:04:24 +00:00
|
|
|
margin: 0;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-04 17:51:03 +00:00
|
|
|
/* Intro/Excerpt Text - Positioned inside header, matching old React CV */
|
|
|
|
|
.intro-text {
|
2025-11-04 17:43:31 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-11-04 17:51:03 +00:00
|
|
|
font-size: 1.0em;
|
2025-11-04 17:43:31 +00:00
|
|
|
line-height: 1.6;
|
|
|
|
|
color: rgb(51, 51, 51);
|
2025-11-04 17:51:03 +00:00
|
|
|
margin-top: 20px;
|
|
|
|
|
text-align: justify;
|
2025-11-04 17:43:31 +00:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
/* Sections */
|
|
|
|
|
.cv-section {
|
2025-10-29 14:04:24 +00:00
|
|
|
margin-bottom: 2rem;
|
2025-10-27 22:39:29 +00:00
|
|
|
page-break-inside: avoid;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 1.3em;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-weight: 500;
|
2025-10-31 16:03:47 +00:00
|
|
|
line-height: 1.2em;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
padding: 0;
|
2025-10-31 11:06:38 +00:00
|
|
|
color: rgb(51, 51, 51);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.summary-text {
|
2025-10-31 11:06:38 +00:00
|
|
|
font-family: 'Quicksand', sans-serif;
|
|
|
|
|
line-height: 1.5;
|
2025-10-20 08:54:21 +01:00
|
|
|
text-align: justify;
|
2025-10-31 16:03:47 +00:00
|
|
|
font-size: 0.9em;
|
2025-10-31 11:06:38 +00:00
|
|
|
font-weight: 400;
|
|
|
|
|
color: rgb(0, 0, 0);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
/* Experience */
|
2025-11-05 12:15:43 +00:00
|
|
|
/* Experience item layout moved to logo-toggle.css */
|
2025-10-27 22:32:32 +00:00
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
.experience-header {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.6rem;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-29 14:04:24 +00:00
|
|
|
.experience-title-line {
|
2025-11-04 20:32:42 +00:00
|
|
|
margin-bottom: 0.3em;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.position {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 1rem;
|
2025-11-04 20:32:42 +00:00
|
|
|
font-weight: 500;
|
2025-10-29 14:04:24 +00:00
|
|
|
margin: 0;
|
|
|
|
|
color: var(--text-dark);
|
2025-11-04 20:32:42 +00:00
|
|
|
margin-bottom: 4px;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-04 20:32:42 +00:00
|
|
|
.position .position-title {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 0.3em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.position .company-name {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-period,
|
|
|
|
|
.experience-separator,
|
|
|
|
|
.experience-location {
|
|
|
|
|
color: #aaa;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 0.9rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
.short-desc {
|
2025-10-29 14:04:24 +00:00
|
|
|
color: var(--text-dark);
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
margin-top: 0.5rem;
|
2025-10-27 22:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
.responsibilities {
|
|
|
|
|
list-style: none;
|
2025-10-29 14:04:24 +00:00
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
padding-left: 0;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.responsibilities li {
|
2025-10-29 14:04:24 +00:00
|
|
|
padding-left: 1.2rem;
|
|
|
|
|
margin-bottom: 0.4rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
position: relative;
|
2025-10-29 14:04:24 +00:00
|
|
|
font-size: 0.9rem;
|
|
|
|
|
color: var(--text-dark);
|
|
|
|
|
line-height: 1.5;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.responsibilities li:before {
|
|
|
|
|
content: "•";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Education */
|
|
|
|
|
.education-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
font-size: 0.9rem;
|
2025-10-29 14:04:24 +00:00
|
|
|
line-height: 1.6;
|
|
|
|
|
color: var(--text-dark);
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Languages */
|
|
|
|
|
.languages-list {
|
2025-10-29 14:04:24 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 1.5rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-item {
|
2025-10-29 14:04:24 +00:00
|
|
|
font-size: 0.9rem;
|
|
|
|
|
color: var(--text-dark);
|
2025-11-04 13:34:44 +00:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-item small {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
margin-top: 0.2rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Courses */
|
|
|
|
|
.course-item {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
padding-bottom: 0.8rem;
|
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-item:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-item strong {
|
|
|
|
|
font-size: 0.95em;
|
|
|
|
|
color: var(--text-dark);
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-item small {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
margin-top: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.course-desc {
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
text-align: justify;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* References */
|
|
|
|
|
.reference-item {
|
|
|
|
|
margin-bottom: 0.6rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reference-item a {
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reference-item a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ref-type {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
font-style: italic;
|
|
|
|
|
margin-top: 0.2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
|
footer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
color: rgba(255,255,255,0.7);
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
|
2025-10-31 17:41:45 +00:00
|
|
|
/* CV Version Toggle Animations */
|
|
|
|
|
@keyframes fadeInGrow {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
max-height: 0;
|
|
|
|
|
transform: scaleY(0.8);
|
|
|
|
|
transform-origin: top;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
max-height: 5000px;
|
|
|
|
|
transform: scaleY(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeOutShrink {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
max-height: 5000px;
|
|
|
|
|
transform: scaleY(1);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
max-height: 0;
|
|
|
|
|
transform: scaleY(0.8);
|
|
|
|
|
transform-origin: top;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Elements that appear/disappear */
|
|
|
|
|
.long-only,
|
|
|
|
|
.short-desc {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Short CV - Hide detailed content with animation */
|
2025-10-27 22:32:32 +00:00
|
|
|
.cv-short .long-only {
|
|
|
|
|
display: none;
|
2025-10-31 17:41:45 +00:00
|
|
|
animation: fadeOutShrink 0.3s ease-in-out;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-short .short-desc {
|
|
|
|
|
display: block;
|
2025-10-31 17:41:45 +00:00
|
|
|
animation: fadeInGrow 0.3s ease-in-out;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-31 17:41:45 +00:00
|
|
|
/* Long CV - Hide short descriptions with animation */
|
2025-10-27 22:32:32 +00:00
|
|
|
.cv-long .short-desc,
|
|
|
|
|
.short-desc {
|
|
|
|
|
display: none;
|
2025-10-31 17:41:45 +00:00
|
|
|
animation: fadeOutShrink 0.3s ease-in-out;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-long .long-only {
|
|
|
|
|
display: block;
|
2025-10-31 17:41:45 +00:00
|
|
|
animation: fadeInGrow 0.3s ease-in-out;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-long .responsibilities {
|
|
|
|
|
display: block;
|
2025-10-31 17:41:45 +00:00
|
|
|
animation: fadeInGrow 0.3s ease-in-out;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
/* Responsive - tablet/mobile */
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.cv-paper {
|
2025-10-29 14:04:24 +00:00
|
|
|
grid-template-columns: 1fr;
|
2025-10-27 22:39:29 +00:00
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2025-10-29 14:04:24 +00:00
|
|
|
|
|
|
|
|
.cv-sidebar {
|
|
|
|
|
padding: 1.5rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-main {
|
|
|
|
|
padding: 1.5rem 1rem;
|
2025-10-27 22:39:29 +00:00
|
|
|
}
|
2025-10-29 14:04:24 +00:00
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
.cv-name {
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
}
|
2025-10-29 14:04:24 +00:00
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
.cv-photo {
|
2025-10-29 14:04:24 +00:00
|
|
|
width: 120px;
|
|
|
|
|
height: 150px;
|
2025-10-27 22:39:29 +00:00
|
|
|
}
|
2025-10-29 14:04:24 +00:00
|
|
|
|
|
|
|
|
.action-bar-content {
|
2025-10-27 22:39:29 +00:00
|
|
|
grid-template-columns: 1fr;
|
2025-10-29 14:04:24 +00:00
|
|
|
gap: 1rem;
|
|
|
|
|
padding: 1rem;
|
2025-10-27 22:39:29 +00:00
|
|
|
}
|
2025-10-29 14:04:24 +00:00
|
|
|
|
|
|
|
|
.language-toggle,
|
2025-10-31 11:06:38 +00:00
|
|
|
.cv-length-toggle,
|
2025-10-29 14:04:24 +00:00
|
|
|
.action-buttons {
|
2025-10-31 11:06:38 +00:00
|
|
|
justify-self: center !important;
|
2025-10-27 22:32:32 +00:00
|
|
|
justify-content: center;
|
2025-10-31 11:06:38 +00:00
|
|
|
width: 100%;
|
2025-10-29 14:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-title-line {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
gap: 0.25rem;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
2025-11-04 17:51:03 +00:00
|
|
|
|
|
|
|
|
.intro-text {
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
2025-10-27 22:39:29 +00:00
|
|
|
|
|
|
|
|
.no-print {}
|
2025-10-31 11:06:38 +00:00
|
|
|
|
|
|
|
|
/* Smooth Transitions for HTMX Swaps */
|
|
|
|
|
.cv-paper {
|
|
|
|
|
transition: opacity 200ms ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-paper.htmx-swapping {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-paper.htmx-settling {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Focus Styles for Accessibility */
|
|
|
|
|
button:focus,
|
|
|
|
|
a:focus {
|
|
|
|
|
outline: 2px solid var(--accent-blue);
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Loading indicator animation */
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to { transform: rotate(360deg); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Error Toast */
|
|
|
|
|
.error-toast {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 2rem;
|
|
|
|
|
right: 2rem;
|
|
|
|
|
background: #fee2e2;
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border-left: 4px solid #dc2626;
|
|
|
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
animation: slideIn 0.3s ease-out;
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slideIn {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(120%);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-icon {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-toast button.error-close {
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: opacity 0.2s;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-toast button.error-close:hover {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-toast button.error-close:focus {
|
|
|
|
|
outline: 2px solid #dc2626;
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mobile responsive error toast */
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.error-toast {
|
|
|
|
|
left: 1rem;
|
|
|
|
|
right: 1rem;
|
|
|
|
|
bottom: 1rem;
|
|
|
|
|
max-width: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-04 19:07:34 +00:00
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
TWO-PAGE LAYOUT STYLES
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
/* Page Container - Each CV page */
|
|
|
|
|
.cv-page {
|
|
|
|
|
background: var(--paper-white);
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
margin: 2rem auto;
|
|
|
|
|
box-shadow: 2px 2px 9px rgba(0,0,0,0.5);
|
|
|
|
|
border: 1px solid #333;
|
|
|
|
|
transform: scale(0.95);
|
|
|
|
|
transform-origin: top center;
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Page Content Grid */
|
|
|
|
|
.page-content {
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Page 1: Left sidebar + Main content */
|
|
|
|
|
.page-1 .page-content {
|
|
|
|
|
grid-template-columns: 300px 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Page 2: Main content + Right sidebar */
|
|
|
|
|
.page-2 .page-content {
|
|
|
|
|
grid-template-columns: 1fr 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Sidebar positioning */
|
|
|
|
|
.cv-sidebar-left {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-sidebar-right {
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Main content positioning */
|
|
|
|
|
.page-1 .cv-main {
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-2 .cv-main {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
FOOTER STYLES
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
.cv-footer {
|
|
|
|
|
background: #303030;
|
|
|
|
|
color: #ccc;
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
grid-column: 1 / -1; /* Span all columns */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-content {
|
|
|
|
|
list-style: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-content li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-content li > div {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 20px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-label {
|
|
|
|
|
width: 200px;
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-value {
|
|
|
|
|
width: 450px;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-value b {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-separator {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: -4%;
|
|
|
|
|
font-size: 0.6em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-separator i {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-footer a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-footer a:hover {
|
|
|
|
|
color: #0275d8;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
PRINT STYLES - TWO-PAGE LAYOUT
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
|
body {
|
|
|
|
|
background: white;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-bar {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-page {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border: none;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
page-break-after: always;
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-page.page-2 {
|
|
|
|
|
page-break-after: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content {
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-section {
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure footer only on page 2 */
|
|
|
|
|
.page-1 .cv-footer {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-footer {
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
background: #ddd !important;
|
|
|
|
|
color: #333 !important;
|
|
|
|
|
-webkit-print-color-adjust: exact;
|
|
|
|
|
print-color-adjust: exact;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set up proper A4 page dimensions */
|
|
|
|
|
@page {
|
|
|
|
|
size: A4 portrait;
|
|
|
|
|
margin: 0.5in;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
SECTION STYLES FOR PAGE 2
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
.award-item,
|
|
|
|
|
.course-item,
|
|
|
|
|
.language-item,
|
|
|
|
|
.reference-item,
|
|
|
|
|
.other-content {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.award-item strong,
|
|
|
|
|
.course-item strong,
|
|
|
|
|
.language-item strong {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-dark);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.award-item small,
|
|
|
|
|
.course-item small {
|
|
|
|
|
color: #666;
|
|
|
|
|
font-size: 0.875em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.award-desc,
|
|
|
|
|
.course-desc {
|
|
|
|
|
margin-top: 0.5em;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
font-size: 0.95em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reference-item {
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.reference-item a {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ref-type {
|
|
|
|
|
color: #999;
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
font-size: 0.875em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
MOBILE RESPONSIVE - TWO-PAGE LAYOUT
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.cv-page {
|
|
|
|
|
margin: 1rem;
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Stack layout on mobile */
|
|
|
|
|
.page-1 .page-content,
|
|
|
|
|
.page-2 .page-content {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-sidebar-left,
|
|
|
|
|
.cv-sidebar-right {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-1 .cv-main,
|
|
|
|
|
.page-2 .cv-main {
|
|
|
|
|
grid-column: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide header on page 2 for mobile to merge pages */
|
|
|
|
|
.page-2 .cv-title-badges-header {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Adjust footer for mobile */
|
|
|
|
|
.footer-content li > div {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-label {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-separator {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-value {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===============================================
|
|
|
|
|
TABLET RESPONSIVE
|
|
|
|
|
=============================================== */
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) and (min-width: 577px) {
|
|
|
|
|
.page-content {
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-label {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.footer-value {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-04 19:56:40 +00:00
|
|
|
|
|
|
|
|
/* Company link styling */
|
|
|
|
|
.company-link {
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.company-link:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
color: #0052a3;
|
|
|
|
|
}
|