/* ==========================================================================
   Berke Özmen - Matematik Öğretmeni Profesyonel Portfolyo & CV
   Tema: Modern Koyu Tema (Dark Luxury Minimalist)
   ========================================================================== */

:root {
  /* Renk Paleti - Koyu Tema (Obsidian & Champagne Gold) */
  --bg-page: #090d16;
  --bg-card: #111726;
  --bg-card-hover: #161e31;
  --bg-card-subtle: #141c2e;
  --bg-surface: rgba(17, 23, 38, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(229, 192, 123, 0.22);
  --border-gold-hover: rgba(229, 192, 123, 0.45);
  
  /* Altın & Vurgu Tonları */
  --gold-primary: #e5c07b;
  --gold-light: #f3d79b;
  --gold-dark: #b89347;
  --gold-glow: rgba(229, 192, 123, 0.15);
  
  /* Metin Renkleri */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Vurgu & WhatsApp */
  --wa-green: #25D366;
  --wa-hover: #20ba59;
  --wa-glow: rgba(37, 211, 102, 0.25);
  
  /* Tipografi */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Gölgeler & Yuvarlatmalar */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(229, 192, 123, 0.12);
  
  /* Geçişler */
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Açık Tema Desteği */
[data-theme="light"] {
  --bg-page: #f6f8fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --bg-card-subtle: #fbf9f4;
  --bg-surface: rgba(255, 255, 255, 0.9);
  
  --border-subtle: #e2e8f0;
  --border-gold: #ecdcb9;
  --border-gold-hover: #c5a059;
  
  --gold-primary: #b89347;
  --gold-light: #c5a059;
  --gold-dark: #8e6c28;
  --gold-glow: rgba(184, 147, 71, 0.1);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
}

/* ==========================================================================
   Temel Sıfırlama & Sayfa Yapısı
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Arka Plan Ambient Işık / Atmosfer */
.bg-ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(circle at 50% -10%, rgba(229, 192, 123, 0.08) 0%, rgba(17, 23, 38, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.math-symbol {
  position: absolute;
  font-family: var(--font-serif);
  color: rgba(229, 192, 123, 0.025);
  font-weight: 700;
  user-select: none;
}

.sym-1 { top: 8%; left: 4%; font-size: 13rem; }
.sym-2 { top: 55%; left: 3%; font-size: 15rem; }
.sym-3 { top: 12%; right: 4%; font-size: 11rem; }
.sym-4 { top: 70%; right: 5%; font-size: 10rem; }
.sym-5 { top: 40%; left: 50%; font-size: 14rem; }

/* ==========================================================================
   Üst Gezinme Barı (Sticky Nav)
   ========================================================================== */
.top-nav {
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  padding: 0.65rem 1.25rem;
  transition: var(--transition);
}

.nav-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  background: rgba(229, 192, 123, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-icon-nav {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-icon-nav:hover {
  color: var(--gold-primary);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.btn-outline-sm {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-outline-sm:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0b0f17;
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(229, 192, 123, 0.2);
  transition: var(--transition);
}

.btn-gold-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 192, 123, 0.35);
}

/* ==========================================================================
   Ana Sayfa Kapsayıcısı (CV Wrapper & Sheet)
   ========================================================================== */
.cv-wrapper {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 1.5rem auto 3.5rem auto;
  padding: 0 1rem;
}

.cv-sheet {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

/* Üst İnce Altın Şerit */
.cv-sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* ==========================================================================
   Hero / Başlık Alanı
   ========================================================================== */
.cv-header {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.25rem;
}

.person-name {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.person-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.1rem;
}

.bio-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bio-text p {
  margin-bottom: 0.6rem;
}

.bio-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Hero CTA Butonları */
.header-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.btn-whatsapp-hero {
  background: var(--wa-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px var(--wa-glow);
  transition: var(--transition);
}

.btn-whatsapp-hero:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-email-hero {
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-email-hero:hover {
  border-color: var(--border-gold);
  color: var(--gold-primary);
  background: rgba(229, 192, 123, 0.06);
  transform: translateY(-2px);
}

/* Profil Fotoğrafı */
.header-photo-wrapper {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: 190px;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border-gold);
  background: var(--bg-card-subtle);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.photo-frame:hover .profile-img {
  transform: scale(1.03);
}

.photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.725rem;
  font-weight: 600;
  text-align: center;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   2 Kolonlu Gövde Düzeni (Grid)
   ========================================================================== */
.cv-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.75rem;
  margin-bottom: 2.25rem;
}

/* Sadeleştirilmiş Bölüm Başlıkları */
.section-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.section-heading.centered {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.section-badge-icon {
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}

.section-rule {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), transparent);
}

/* ==========================================================================
   EĞİTİM BÖLÜMÜ
   ========================================================================== */
.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.edu-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.edu-card:hover {
  border-color: var(--border-gold);
  transform: translateX(3px);
}

.edu-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.edu-meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  background: rgba(229, 192, 123, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ==========================================================================
   MESLEKİ DENEYİM BÖLÜMÜ
   ========================================================================== */
.exp-intro {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.exp-years {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.exp-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.timeline-compact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  padding-left: 1rem;
  border-left: 1px solid var(--border-subtle);
}

.timeline-card {
  position: relative;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: var(--transition);
}

.timeline-dot {
  position: absolute;
  left: calc(-1rem - 4.5px);
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
}

.timeline-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.t-school {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-primary);
}

.t-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(229, 192, 123, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.t-role {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.t-focus {
  font-size: 0.775rem;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.t-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.t-tag {
  font-size: 0.725rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

/* ==========================================================================
   SAĞ KOLON: TEKNİK YETKİNLİKLER & ÖZEL DERS
   ========================================================================== */
.skills-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.skill-chip {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.skill-chip:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.skill-chip.featured {
  background: rgba(229, 192, 123, 0.06);
  border-color: var(--border-gold);
}

.skill-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.skill-left i {
  color: var(--gold-primary);
  width: 16px;
}

.skill-level-badge {
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.skill-level-badge.advanced {
  background: rgba(229, 192, 123, 0.15);
  color: var(--gold-light);
}

.skill-level-badge.intermediate {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

/* Teknoloji Alıntı Kartı */
.tech-quote-clean {
  margin-top: 1rem;
  background: var(--bg-card-subtle);
  border-left: 2px solid var(--gold-primary);
  padding: 0.75rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.tech-quote-clean i {
  color: var(--gold-primary);
  margin-top: 0.15rem;
}

/* Özel Ders Hap Butonları */
.mt-4 {
  margin-top: 1.75rem;
}

.tutoring-tags-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-clean {
  font-size: 0.775rem;
  font-weight: 600;
  background: var(--bg-card-subtle);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.pill-clean i {
  color: var(--gold-primary);
  font-size: 0.65rem;
}

.pill-clean:hover {
  border-color: var(--border-gold);
  background: rgba(229, 192, 123, 0.08);
  color: var(--gold-light);
}

/* Hızlı Talep Kartı (Minimal Koyu CTA) */
.quick-cta-minimal {
  margin-top: 1.75rem;
  background: linear-gradient(135deg, rgba(229, 192, 123, 0.08), rgba(17, 23, 38, 0.9));
  border: 1px solid var(--border-gold);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.quick-cta-minimal h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.quick-cta-minimal p {
  font-size: 0.775rem;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.btn-wa-block {
  background: var(--wa-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.btn-wa-block:hover {
  background: var(--wa-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   ALT BİLGİ / İLETİŞİM ALANI
   ========================================================================== */
.cv-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.contact-card:hover:not(.non-link) {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(229, 192, 123, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-val {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-all;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   YÜZEN WHATSAPP BUTONU (Sabit Sağ Alt)
   ========================================================================== */
.floating-whatsapp-container {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
}

.floating-whatsapp-btn {
  width: 54px;
  height: 54px;
  background: var(--wa-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  background: var(--wa-hover);
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #111726;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE / MOBİL UYUMLULUK
   ========================================================================== */
@media (max-width: 868px) {
  .cv-sheet {
    padding: 1.75rem 1.25rem;
  }

  .cv-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .person-tagline {
    justify-content: center;
  }

  .header-cta-group {
    justify-content: center;
  }

  .header-photo-wrapper {
    order: -1;
  }

  .photo-frame {
    width: 160px;
    height: 205px;
    margin: 0 auto;
  }

  .person-name {
    font-size: 2.4rem;
  }

  .cv-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .floating-whatsapp-container {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .floating-whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   PRINT / PDF ÇIKTI AYARLARI (Ctrl + P)
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .top-nav,
  .floating-whatsapp-container,
  .bg-ambient-glow,
  .bg-decoration,
  .quick-cta-minimal,
  .header-cta-group {
    display: none !important;
  }

  .cv-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cv-sheet {
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    color: #000000 !important;
  }

  .cv-sheet::before {
    display: none !important;
  }

  .person-name, .section-title, .edu-title, .t-school, .skill-left, .contact-val {
    color: #000000 !important;
  }

  .bio-text, .t-role, .exp-note, .contact-label {
    color: #333333 !important;
  }

  .edu-card, .timeline-card, .skill-chip, .contact-card, .pill-clean {
    background: #ffffff !important;
    border-color: #cccccc !important;
  }

  a {
    text-decoration: none !important;
    color: inherit !important;
  }
}
