/* ======================================
   FRIDTJOF STEDE – NORWEGEN NATUR
   Dunkel · Fjord · Wald · Stein
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Kern-Palette – Norwegen */
  --fjord:       #0B2535;   /* tiefstes Fjordwasser */
  --fjord-mid:   #0F3347;   /* Fjord Mitte */
  --fjord-light: #1A4D6B;   /* Fjord hell */
  --skog:        #1B3D1A;   /* Fichtenwald dunkel */
  --skog-mid:    #2A5428;   /* Wald Mitte */
  --skog-light:  #3D7039;   /* Moos, helle Blätter */
  --stein:       #252C2F;   /* Fels, Granit */
  --stein-light: #3A4347;   /* heller Stein */
  --bjork:       #C8A96E;   /* Birkenholz, Bernstein */
  --bjork-light: #DEC48A;   /* helles Birkenholz */
  --sol:         #E8B84B;   /* Mitternachtssonne */

  /* Hintergründe */
  --bg-deep:     #080F14;   /* fast schwarz */
  --bg-base:     #0D1A22;   /* Haupt-BG */
  --bg-surface:  #111E28;   /* Karten-BG */
  --bg-raised:   #162532;   /* erhobene Elemente */
  --bg-hover:    #1C2F3D;   /* Hover-State */

  /* Text */
  --text-primary:  #D8E8E0; /* fast weiß, etwas grün getönt */
  --text-secondary:#8FA8A0; /* gedämpftes Grau-Grün */
  --text-muted:    #4A6068; /* sehr gedämpft */
  --text-accent:   var(--bjork); /* warm */

  /* Grenzen & Schatten */
  --border:        rgba(26, 77, 107, 0.35);
  --border-light:  rgba(200, 169, 110, 0.2);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:     0 6px 30px rgba(0,0,0,0.5);
  --shadow-lg:     0 16px 60px rgba(0,0,0,0.6);

  --radius:    14px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Jost', system-ui, sans-serif;
}

/* ======================================
   RESET & BASE
   ====================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-weight: 300;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  /* Subtile Holzmaserung / Rauschen via SVG-Filter */
  position: relative;
}

/* Hintergrund-Atmosphäre */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(26, 77, 107, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(27, 61, 26, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

a {
  color: var(--bjork-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--sol); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ======================================
   NAVIGATION
   ====================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 15, 20, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bjork-light);
  letter-spacing: 1px;
  border: 1px solid var(--border-light);
  padding: 5px 14px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}
.nav-logo:hover {
  color: var(--sol);
  border-color: rgba(232, 184, 75, 0.4);
  background: rgba(200, 169, 110, 0.06);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 auto;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links li a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 7px 11px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-links li a i { font-size: 0.72rem; }
.nav-links li a:hover {
  color: var(--text-primary);
  background: var(--bg-raised);
}
.nav-links li a.active {
  color: var(--bjork-light);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--border-light);
}

/* push specific nav item to the right */
.nav-links .nav-right { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ======================================
   MAIN & TABS
   ====================================== */

.main-content {
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
  padding: 52px 0 100px;
  animation: tabIn 0.35s ease both;
}
.tab-content.active { display: block; }

@keyframes tabIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======================================
   TAB HEADER
   ====================================== */

.tab-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 52px 24px 44px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--fjord) 0%, var(--stein) 55%, var(--skog) 100%);
  border: 1px solid var(--border);
}

.tab-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(200,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(26,77,107,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Dezente Linien-Textur oben */
.tab-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bjork), var(--skog-light), transparent);
}

.tab-header h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  position: relative;
  letter-spacing: -0.5px;
}

.tab-header h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--bjork), var(--skog-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

.tab-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 300;
  margin-top: 8px;
  position: relative;
  letter-spacing: 0.3px;
}

/* ======================================
   DASHBOARD
   ====================================== */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--fjord-light), transparent); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--skog-light), transparent); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--bjork), transparent); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #6B4A8A, transparent); }

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 110, 0.25);
  background: var(--bg-raised);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-card:nth-child(1) .stat-icon { background: rgba(26,77,107,0.3);  color: #6EB4D4; }
.stat-card:nth-child(2) .stat-icon { background: rgba(61,112,57,0.3);  color: #7DC47A; }
.stat-card:nth-child(3) .stat-icon { background: rgba(200,169,110,0.2); color: var(--bjork-light); }
.stat-card:nth-child(4) .stat-icon { background: rgba(107,74,138,0.25); color: #B494D8; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dash-col-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 10px;
  border-bottom: 1px solid var(--border);
}
.dash-col-title i { font-size: 0.75rem; }
.dash-col:nth-child(1) .dash-col-title { color: #6EB4D4; border-color: rgba(110,180,212,0.25); }
.dash-col:nth-child(2) .dash-col-title { color: #7DC47A; border-color: rgba(125,196,122,0.25); }
.dash-col:nth-child(3) .dash-col-title { color: var(--bjork-light); border-color: rgba(200,169,110,0.25); }
.dash-col:nth-child(4) .dash-col-title { color: #B494D8; border-color: rgba(180,148,216,0.25); }

.dash-card {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.dash-card:hover {
  transform: translateY(-2px);
  background: var(--bg-raised);
  border-color: rgba(200,169,110,0.2);
  box-shadow: var(--shadow-sm);
}

.dash-card-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 7px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.tag-green  { background: rgba(61,112,57,0.25);   color: #7DC47A; }
.tag-blue   { background: rgba(26,77,107,0.3);    color: #6EB4D4; }
.tag-yellow { background: rgba(200,169,110,0.18); color: var(--bjork-light); }
.tag-brown  { background: rgba(139,107,74,0.2);   color: #C4A07A; }
.tag-purple { background: rgba(107,74,138,0.25);  color: #B494D8; }

.dash-card h3 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.dash-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ======================================
   ÜBER MICH
   ====================================== */

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--border);
}

.about-image { display: flex; justify-content: center; }

.profile-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fjord-mid), var(--skog));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  border: 2px solid var(--border-light);
  transition: border-color var(--transition);
  overflow: hidden;
}
.profile-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.profile-placeholder i { font-size: 3.5rem; color: var(--text-muted); }
.profile-placeholder:hover { border-color: rgba(200,169,110,0.5); }

.about-text h2 {
  font-size: 2.1rem;
  font-style: italic;
  margin-bottom: 6px;
}
.about-tagline {
  color: var(--bjork);
  font-size: 0.9rem;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.about-text p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.97rem;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.about-detail i {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.about-detail:nth-child(1) i { background: rgba(26,77,107,0.3);    color: #6EB4D4; }
.about-detail:nth-child(2) i { background: rgba(61,112,57,0.3);    color: #7DC47A; }
.about-detail:nth-child(3) i { background: rgba(200,169,110,0.18); color: var(--bjork-light); }
.about-detail:nth-child(4) i { background: rgba(61,112,57,0.25);   color: #7DC47A; }
.about-detail:nth-child(5) i { background: rgba(26,77,107,0.25);   color: #6EB4D4; }

/* ======================================
   FSJ TIMELINE
   ====================================== */

.fsj-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 36px;
}
.fsj-timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--fjord-light), var(--bjork), #8B2E2E, var(--skog-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 0 2px currentColor;
  z-index: 1;
}

.timeline-content {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,169,110,0.2);
}

.timeline-date {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-content h3 {
  font-size: 1.1rem;
  margin: 5px 0 8px;
  font-style: italic;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======================================
   LEBENSLAUF
   ====================================== */

.cv-section {
  max-width: 700px;
  margin: 0 auto 28px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--border);
}

.cv-section-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cv-section-title i { color: var(--bjork); }

.cv-item {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  padding: 14px 16px;
  background: var(--bg-raised);
  border-radius: var(--radius-xs);
  border-left: 2px solid var(--fjord-light);
}
.cv-year {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 110px;
  padding-top: 2px;
}
.cv-detail h3 {
  font-family: var(--font-ui);
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
}
.cv-detail p { font-size: 0.88rem; color: var(--text-secondary); }

.cv-languages { display: flex; flex-direction: column; gap: 8px; }
.cv-lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-raised);
  border-radius: var(--radius-xs);
  border-left: 2px solid var(--skog-light);
  font-size: 0.92rem;
}
.cv-lang-level {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--skog-light);
  background: rgba(61,112,57,0.15);
  padding: 3px 12px;
  border-radius: 20px;
}

/* ======================================
   PROJEKTE
   ====================================== */

.projekt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.projekt-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.projekt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bjork), transparent);
  opacity: 0.6;
}
.projekt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.25);
  box-shadow: var(--shadow-lg);
  background: var(--bg-raised);
}

.projekt-icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--fjord-mid), var(--skog));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--bjork-light);
  border: 1px solid var(--border-light);
}

.projekt-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}
.projekt-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ======================================
   HOBBYS
   ====================================== */

.hobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.hobby-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 30px 22px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.hobby-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.2);
  box-shadow: var(--shadow-md);
  background: var(--bg-raised);
}

.hobby-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  border: 1px solid var(--border);
}
.hobby-card:nth-child(1) .hobby-icon { background: rgba(200,169,110,0.12); color: var(--bjork-light); border-color: rgba(200,169,110,0.3); }
.hobby-card:nth-child(2) .hobby-icon { background: rgba(26,77,107,0.25);   color: #6EB4D4; border-color: rgba(110,180,212,0.3); }
.hobby-card:nth-child(3) .hobby-icon { background: rgba(61,112,57,0.25);   color: #7DC47A; border-color: rgba(125,196,122,0.3); }
.hobby-card:nth-child(4) .hobby-icon { background: rgba(200,169,110,0.12); color: var(--bjork); border-color: rgba(200,169,110,0.3); }
.hobby-card:nth-child(5) .hobby-icon { background: rgba(26,77,107,0.2);    color: #6EB4D4; border-color: rgba(110,180,212,0.3); }

.hobby-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}
.hobby-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ======================================
   REISEN / MAP
   ====================================== */

.reisen-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 0.97rem;
  background: var(--bg-surface);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  height: 440px;
}
#map { width: 100%; height: 100%; }

.reiseziele {
  max-width: 680px;
  margin: 0 auto;
}
.reiseziele h2 {
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 18px;
  text-align: center;
}

.reise-liste { display: flex; flex-direction: column; gap: 12px; }
.reise-item {
  display: flex;
  gap: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: all var(--transition);
  border-left: 2px solid;
}
.reise-item:nth-child(1) { border-left-color: var(--skog-light); }
.reise-item:nth-child(2) { border-left-color: var(--fjord-light); }
.reise-item:nth-child(3) { border-left-color: var(--bjork); }
.reise-item:hover {
  background: var(--bg-raised);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.reise-flag { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.reise-item h3 { font-size: 0.97rem; font-weight: 600; margin-bottom: 3px; font-style: italic; }
.reise-item p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; }

/* ======================================
   BLOG
   ====================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.2);
  box-shadow: var(--shadow-lg);
}

.blog-img-placeholder {
  height: 160px;
  background: linear-gradient(145deg, var(--fjord-mid), var(--skog));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.blog-img-placeholder i { color: rgba(200,169,110,0.3); }

.blog-body { padding: 20px; }
.blog-date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body h3 {
  font-size: 1rem;
  font-style: italic;
  margin: 7px 0 8px;
}
.blog-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.blog-readmore {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bjork);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.blog-readmore i { font-size: 0.72rem; transition: transform var(--transition); }
.blog-readmore:hover { color: var(--sol); }
.blog-readmore:hover i { transform: translateX(4px); }

/* ======================================
   GALERIE
   ====================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(200,169,110,0.4);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: rgba(216, 232, 224, 0.9);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.gallery-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.87rem;
  font-style: italic;
}

/* ======================================
   KONTAKT
   ====================================== */

.kontakt-grid {
  display: flex;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

.kontakt-info {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.kontakt-info h3 {
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.kontakt-info > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.kontakt-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.kontakt-item i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(26,77,107,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6EB4D4;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.kontakt-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.kontakt-item span:last-child {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.kontakt-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--text-primary);
  background: rgba(26,77,107,0.35);
  border-color: rgba(110,180,212,0.4);
  transform: translateY(-3px);
}

.kontakt-form {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-raised);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(110,180,212,0.5);
  box-shadow: 0 0 0 3px rgba(26,77,107,0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  border: none;
  border-radius: var(--radius-xs);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--fjord-light), var(--skog-mid));
  color: var(--text-primary);
  border: 1px solid rgba(200,169,110,0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1F5D83, #345C30);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ======================================
   IMPRESSUM
   ====================================== */

.impressum-content { max-width: 680px; margin: 0 auto; }
.impressum-block {
  margin-bottom: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-left: 2px solid;
}
.impressum-block:nth-child(1) { border-left-color: var(--fjord-light); }
.impressum-block:nth-child(2) { border-left-color: var(--skog-light); }
.impressum-block:nth-child(3) { border-left-color: var(--bjork); }
.impressum-block:nth-child(4) { border-left-color: var(--fjord-light); }

.impressum-block h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-style: italic;
}
.impressum-block p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================
   FOOTER
   ====================================== */

.footer {
  background: var(--bg-deep);
  color: var(--text-muted);
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--bjork);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--bjork-light); }

.footer-copy p {
  font-size: 0.75rem;
  color: rgba(74, 96, 104, 0.6);
}

/* ======================================
   ANIMATIONEN (Scroll)
   ====================================== */

.dash-card,
.hobby-card,
.projekt-card,
.blog-card,
.gallery-item {
  will-change: opacity, transform;
}

/* ======================================
   RESPONSIVE
   ====================================== */

@media (max-width: 1024px) {
  .dashboard-columns { grid-template-columns: repeat(2, 1fr); }
  .hobby-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--bg-deep);
    flex-direction: column;
    padding: 20px;
    gap: 2px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a { font-size: 0.95rem; padding: 13px 16px; }

  .tab-header { padding: 36px 20px 30px; }
  .tab-header h1 { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .profile-placeholder { width: 180px; height: 180px; }
  .about-details { grid-template-columns: 1fr; }

  .dashboard-columns { grid-template-columns: 1fr; }
  .projekt-grid { grid-template-columns: 1fr; }
  .hobby-grid   { grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 20px; }

  .map-container { height: 280px; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cv-item { flex-direction: column; gap: 6px; }
  .container { padding: 0 16px; }
  .tab-content { padding: 36px 0 60px; }
}