/* =========================================================
   FUSSpflege VOIGT – Stylesheet
   ========================================================= */

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

:root {
  --clr-bg:        #faf9f7;
  --clr-surface:   #ffffff;
  --clr-primary:   #2c5f5d;   /* tiefes Teal */
  --clr-primary-l: #3d7e7b;
  --clr-accent:    #8fad9c;   /* Salbeigrün */
  --clr-text:      #2d2d2d;
  --clr-muted:     #6b6b6b;
  --clr-border:    #e0ddd8;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Lato', sans-serif;
  --radius:        6px;
  --shadow:        0 4px 24px rgba(44,95,93,.10);
  --transition:    .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.center     { text-align: center; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: .6rem;
}
.section-label.center { text-align: center; }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-primary-l);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  margin-left: .75rem;
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ----- Placeholder images ----- */
.placeholder-img {
  background: var(--clr-border);
  object-fit: cover;
  width: 100%;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--clr-text);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--clr-primary); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}
.hero__img {
  height: 100%;
  object-fit: cover;
  /* Platzhalterfarbe bis echtes Bild da */
  background: linear-gradient(135deg, #c8d9d8 0%, #e8eeec 100%);
  min-height: 90vh;
}

/* Overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,44,43,.65) 30%, rgba(20,44,43,.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px;
  padding: 4rem 1.5rem;
}

.hero__sub {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 1.2rem;
}

.hero__text {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--clr-surface); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__img {
  height: 480px;
  object-fit: cover;
  background: linear-gradient(135deg, #c8d9d8 0%, #e8eeec 100%);
}

.about__text p {
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.about__text h2 { margin-bottom: 1.2rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--clr-bg); }
.services h2 { margin-bottom: 3rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 1.4rem;
  color: var(--clr-accent);
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--clr-muted);
  font-size: .95rem;
}

/* =========================================================
   BOOKING / TERMIN
   ========================================================= */
.booking { background: var(--clr-surface); }
.booking h2 { margin-bottom: .5rem; }

.booking__intro {
  color: var(--clr-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.booking__wrap { max-width: 780px; }

.booking-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--clr-text);
}
.label-optional {
  font-weight: 400;
  color: var(--clr-muted);
  font-size: .8rem;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
}
textarea { resize: vertical; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--clr-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h2 { margin-bottom: 1.5rem; }

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact__list li {
  color: var(--clr-muted);
  font-size: .95rem;
  line-height: 1.6;
}
.contact__list strong {
  display: block;
  color: var(--clr-text);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.map-placeholder {
  background: var(--clr-border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--clr-primary);
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.footer__copy  { font-size: .85rem; }
.footer__credit { font-size: .8rem; opacity: .6; }
.footer__credit-link { color: #1a3a6b; font-weight: 700; opacity: 1; }
.footer__credit-link:hover { text-decoration: underline; }

.footer__nav {
  display: flex;
  gap: 1.5rem;
  font-size: .85rem;
}
.footer__nav a { opacity: .75; transition: opacity var(--transition); }
.footer__nav a:hover { opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about__grid        { grid-template-columns: 1fr; }
  .about__img         { height: 320px; }
  .services__grid     { grid-template-columns: 1fr 1fr; }
  .contact__grid      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--clr-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav__links.open { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .section        { padding: 4rem 0; }
  .hero           { min-height: 80vh; }
  .hero__img      { min-height: 80vh; }

  .footer__inner  { flex-direction: column; text-align: center; }
}
