/* CV/style.css */

.cv-hero { min-height: 60vh; align-items: center; }
.cv-hero-inner {
  display: flex; justify-content: space-between; align-items: center; gap: var(--gap-l);
}
.cv-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.cv-hero-photo img {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.cv-section { background: var(--beige); padding: var(--gap-xl) var(--gap-m); }
.cv-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: var(--gap-l); align-items: start;
}

/* LEFT */
.cv-left  { display: flex; flex-direction: column; gap: var(--gap-m); }
.cv-block {
  background: var(--weiss); border-radius: var(--r);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.cv-block-title {
  font-family: var(--font-rund); font-size: 0.78rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: #0072b5;
  margin-bottom: 1.1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--blau);
}
.cv-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.88rem; color: #444; }
.cv-lang-list    { display: flex; flex-direction: column; gap: 1rem; }
.cv-lang         { display: flex; flex-direction: column; gap: 0.3rem; }
.cv-lang-name    { font-size: 0.9rem; color: #333; font-weight: 500; }
.lang-dots       { display: flex; gap: 4px; }
.dot             { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.dot.active      { background: var(--blau); }
.lang-level      { font-size: 0.8rem; color: #888; }
.cv-skills-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cv-skill-tag {
  background: var(--beige); border: 1px solid #e0dbd5;
  border-radius: 20px; padding: 0.2rem 0.7rem;
  font-size: 0.8rem; color: #444;
  transition: background 0.2s, border-color 0.2s;
}
.cv-skill-tag:hover { background: var(--blau); border-color: var(--blau); color: #111; }
.cv-interests { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; color: #555; }

/* RIGHT */
.cv-right { display: flex; flex-direction: column; gap: var(--gap-m); }
.cv-entry {
  padding-bottom: 1.4rem; border-bottom: 1px solid #eee;
  margin-bottom: 1.4rem;
}
.cv-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cv-entry-header {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 0.2rem;
}
.cv-entry-header h4 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: #111; }
.cv-date    { font-size: 0.82rem; color: #0072b5; font-family: var(--font-rund); white-space: nowrap; }
.cv-company { display: block; font-size: 0.88rem; color: #888; margin-bottom: 0.6rem; }
.cv-entry-points { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.cv-entry-points li { font-size: 0.9rem; color: #555; display: flex; gap: 0.5rem; line-height: 1.55; }
.cv-entry-points li::before { content: '▸'; color: var(--blau); flex-shrink: 0; }

.cv-download { background: linear-gradient(135deg,#0a1a22,var(--dunkel)); padding: var(--gap-xl) var(--gap-m); text-align: center; }
.cv-download-inner { max-width: 560px; margin: 0 auto; }
.cv-download-inner p { color: rgba(255,255,255,0.6); margin: 1rem 0 2rem; }

@media (max-width: 900px) {
  .cv-hero-inner { flex-direction: column-reverse; align-items: flex-start; }
  .cv-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cv-hero-photo img { width: 120px; height: 120px; }
  .cv-entry-header { flex-direction: column; gap: 0.2rem; }
}
