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

:root {
  --cream:    #faf9f6;
  --white:    #ffffff;
  --gold:     #c8a96e;
  --gold-dark:#a88845;
  --navy:     #1a2035;
  --navy-mid: #263050;
  --gray:     #6b7280;
  --gray-light:#f3f2ef;
  --text:     #1f2937;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(26,32,53,.10);
  --shadow-lg:0 8px 40px rgba(26,32,53,.15);
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }

.section__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

.section__sub {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__header { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,110,.35);
}

.btn--outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,32,53,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,.2);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}

.nav__logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.nav__logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

.nav__logo-sub {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,32,53,.92) 0%, rgba(38,48,80,.85) 60%, rgba(200,169,110,.2) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 8rem;
  max-width: 750px;
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
}
.hero__wave svg { display: block; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }

/* ===== LEISTUNGEN ===== */
.leistungen { background: var(--cream); }

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.karte {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.karte__icon { font-size: 2rem; margin-bottom: 1rem; }

.karte h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.karte ul { display: flex; flex-direction: column; gap: .5rem; }

.karte ul li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--gray);
  font-size: .9rem;
}

.karte ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== VORTEILE ===== */
.vorteile {
  background: var(--navy);
  color: var(--white);
}

.vorteile .section__eyebrow { color: var(--gold); }
.vorteile .section__title { color: var(--white); }
.vorteile p { color: rgba(255,255,255,.75); }

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

.vorteile__punkte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vorteil {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vorteil__icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.vorteil strong { display: block; color: var(--white); margin-bottom: .2rem; }
.vorteil p { font-size: .9rem; }

.vorteile__bild {
  display: flex;
  justify-content: center;
}

.bild__rahmen {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bild__rahmen::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.3);
}

.bild__inner {
  text-align: center;
}

.bild__symbol {
  font-size: 5rem;
  display: block;
  margin-bottom: .5rem;
}

.bild__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.4;
}

/* ===== INFO SECTION ===== */
.info-section { background: var(--gray-light); }

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

.info__box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.info__title {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.info__icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.info__item strong { display: block; color: var(--navy); margin-bottom: .25rem; }
.info__item p { color: var(--gray); font-size: .95rem; }
.info__item a { color: var(--gold-dark); font-weight: 500; }
.info__item a:hover { text-decoration: underline; }

.oeffnungszeiten { width: 100%; border-collapse: collapse; }

.oeffnungszeiten td {
  padding: .8rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text);
}

.oeffnungszeiten td:first-child { font-weight: 500; color: var(--navy); }
.oeffnungszeiten td:last-child { text-align: right; color: var(--gray); }

.oeffnungszeiten tr.geschlossen td { color: #ef4444; }
.oeffnungszeiten tr.geschlossen td:first-child { color: #ef4444; }

.hinweis {
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--gray);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: .75rem;
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===== IMPRESSUM ===== */
.impressum { background: var(--cream); }

.impressum__box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.impressum__box h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.impressum__box h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
}

.impressum__box p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
}

.impressum__box a { color: var(--gold-dark); }
.impressum__box a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 2rem 0;
  color: rgba(255,255,255,.6);
}

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

.footer__logo {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer__copy { font-size: .85rem; }

.footer__link {
  font-size: .85rem;
  color: var(--gold);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .vorteile__grid { grid-template-columns: 1fr; }
  .vorteile__bild { display: none; }
  .info__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(200,169,110,.2);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .85rem 1.5rem; width: 100%; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }

  .hero__content { padding-top: 4rem; }
  .hero__title { font-size: 2.2rem; }
  .hero__cta { flex-direction: column; }
  .btn { text-align: center; }

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

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

@media (max-width: 480px) {
  .info__box { padding: 1.5rem; }
  .impressum__box { padding: 2rem 1.5rem; }
}
