/* ── LOCAL FONTS ── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #3a3a3a;
  --mid: #5a5a5a;
  --light: #f7f5f2;
  --white: #ffffff;
  --accent: #8a9e8a;
  --footer-bg: #3d3d3d;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 52px;
}

.nav-brand {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-bottom: 1px solid #fff;
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  background: url('images/Schaukel_am_Strand_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ── PAGE HERO (Unterseiten ohne Vollbild) ── */
.page-hero {
  padding: 7rem 2rem 3rem;
  text-align: center;
  background: var(--light);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── SECTION BASE ── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 860px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.section-text {
  text-align: center;
  font-size: 1rem;
  color: var(--mid);
  max-width: 740px;
  margin: 0 auto 1.5rem;
}

/* ── WILLKOMMEN ── */
#willkommen {
  background: var(--white);
}

#willkommen .sub-section {
  margin-top: 3.5rem;
  border-top: 1px solid #e8e5e0;
  padding-top: 3rem;
}

#willkommen .sub-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.2rem;
}

#willkommen .highlight {
  font-weight: 400;
}

/* ── ANSATZ / CARDS ── */
#ansatz {
  background: var(--light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 280px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem 1.2rem 1.4rem;
  color: #fff;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.9;
}

.btn-mehr {
  display: inline-block;
  padding: 0.45rem 1.3rem;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.btn-mehr:hover {
  background: #fff;
  color: var(--dark);
}

/* ── ÜBER MICH ── */
#ueber-mich {
  background: var(--white);
  text-align: center;
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 3px solid var(--light);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.profile-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: var(--dark);
}

.btn-mehr-outline {
  display: inline-block;
  padding: 0.55rem 1.8rem;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.btn-mehr-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* ── KONTAKT ── */
#kontakt {
  background: var(--light);
}

.kontakt-intro {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.kontakt-info {
  margin-bottom: 2.5rem;
  line-height: 1.9;
  font-size: 0.97rem;
}

.kontakt-info a {
  color: var(--dark);
  text-decoration: underline;
}

.kontakt-location {
  margin-bottom: 2rem;
  font-size: 0.97rem;
  color: var(--mid);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.map-location p {
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.map-frame {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 4px;
  display: block;
}

/* ── UNTERSEITEN INHALT ── */
.page-content {
  background: var(--white);
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
}

.page-content p {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 300;
}

.footer-contact {
  line-height: 1.8;
}

.footer-contact a {
  color: #ccc;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: underline;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  nav {
    padding: 0 1.2rem;
    flex-wrap: wrap;
    height: auto;
    min-height: 52px;
  }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.82rem;
    border-bottom: none !important;
    opacity: 1;
  }
  .nav-links a:hover { opacity: 0.75; }

  section { padding: 3rem 1.2rem; }

  .hero-content h1 { font-size: 1.75rem; }
  .hero-content p  { font-size: 0.9rem; }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card { aspect-ratio: 16/10; min-height: 220px; }

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

  footer {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 1.2rem;
    text-align: center;
  }
  .footer-links { justify-content: center; }

  .btn-mehr, .btn-mehr-outline {
    padding: 0.6rem 1.6rem;
    font-size: 0.75rem;
  }

  .profile-img { width: 110px; height: 110px; }
}