/* ============================================================
   Dr. Nora Alsdorf – Statische Webseite
   Fonts: Cormorant SC (Logo), Raleway (Headings), Roboto (Body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;500;600&family=Raleway:wght@300;400;500;600&family=Roboto:wght@300;400;500&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background-color: #edeae4;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

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

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

/* ---- Header / Navigation ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background-color: #edeae4;
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover,
nav a.active {
  color: #444;
  border-bottom-color: #888;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.03em;
}

.header-name {
  font-family: 'Cormorant SC', serif;
  font-size: 22px;
  font-weight: 500;
  color: #3a3535;
  letter-spacing: 0.06em;
}

/* ---- Page Wrapper (account for fixed header) ---- */
.page-content {
  padding-top: 62px;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
}

.hero-text h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.3;
  color: #3a3535;
  margin-bottom: 18px;
}

.hero-text .hero-location {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero-text p {
  font-size: 15px;
  color: #666;
  max-width: 440px;
  line-height: 1.75;
}

.hero-scroll {
  margin-top: 60px;
  font-size: 20px;
  color: #999;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Home Sections ---- */
.home-section {
  padding: 90px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #3a3535;
  margin-bottom: 40px;
}

/* ---- Service Cards (Home preview + Leistungen page) ---- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.card {
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-body {
  background-color: rgba(148, 144, 140, 0.88);
  padding: 28px 32px 36px;
}

.card-body h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}

.card-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ---- Home About teaser ---- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-teaser-text h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #3a3535;
  margin-bottom: 24px;
}

.about-teaser-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-teaser-text a.btn {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #bbb;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.about-teaser-text a.btn:hover {
  color: #444;
  border-color: #777;
}

.about-teaser-image img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

/* ============================================================
   LEISTUNGEN PAGE
   ============================================================ */

.page-header {
  padding: 60px 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #3a3535;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

.ueber-mich-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 40px 80px;
  text-align: center;
}

.ueber-mich-wrap h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #3a3535;
  margin-bottom: 40px;
}

.portrait {
  width: 340px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 40px;
}

.ueber-mich-wrap p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ueber-mich-wrap .quote {
  font-style: italic;
  color: #888;
  font-size: 16px;
  margin: 28px 0 12px;
}

/* ---- Timeline (Kurzbiographie) ---- */
.bio-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 40px 80px;
}

.bio-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #3a3535;
  text-align: center;
  margin-bottom: 40px;
}

.timeline {
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #ddd8d0;
}

.timeline li:last-child {
  border-bottom: 1px solid #ddd8d0;
}

.timeline-year {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  padding-top: 2px;
}

.timeline-text {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
}

/* ============================================================
   VORTRÄGE & PUBLIKATIONEN
   ============================================================ */

.vortraege-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px 80px;
}

.vortraege-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #3a3535;
  margin-bottom: 32px;
}

.vortraege-content h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #3a3535;
  margin: 50px 0 24px;
}

.talk-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd8d0;
}

.talk-item:last-child {
  border-bottom: none;
}

.talk-date {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 4px;
}

.talk-title {
  font-weight: 400;
  font-size: 15px;
  color: #444;
  margin-bottom: 4px;
}

.talk-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
}

.pub-item {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd8d0;
}

.pub-item:last-child {
  border-bottom: none;
}

.vortraege-sidebar img {
  width: 100%;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

.kontakt-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 40px 80px;
}

.kontakt-wrap h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #555;
  text-align: center;
  margin-bottom: 48px;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  background: #fff;
  padding: 50px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 6px;
  margin-top: 20px;
}

.contact-form label:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.form-row label {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #aaa;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

.contact-form .privacy-check input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-form a {
  text-decoration: underline;
}

.contact-form button {
  display: block;
  margin-top: 24px;
  padding: 10px 28px;
  background: #888;
  color: #fff;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #666;
}

.contact-info h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #3a3535;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

.contact-info a {
  color: #666;
}

.contact-info a:hover {
  color: #333;
}

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

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 40px 80px;
}

.legal-wrap h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #3a3535;
  margin-bottom: 40px;
}

.legal-wrap h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #444;
  margin: 36px 0 10px;
}

.legal-wrap h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #555;
  margin: 24px 0 8px;
}

.legal-wrap p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-wrap a {
  color: #666;
  text-decoration: underline;
}

/* ---- Footer ---- */
footer {
  padding: 32px 60px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #ddd8d0;
}

footer a {
  color: #aaa;
  margin: 0 12px;
  transition: color 0.2s;
}

footer a:hover {
  color: #666;
}

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

@media (max-width: 900px) {
  header {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 60vw;
  }

  .hero-text {
    padding: 50px 30px;
  }

  .cards-grid,
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }

  .vortraege-layout {
    grid-template-columns: 1fr;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 100px 1fr;
  }

  footer {
    padding: 24px 30px;
  }
}
