/* ============================================================
   GUTZWILLER.CSS — Unterseiten-Stil gutzwiller.photo
   Passend zur Index-Seite: Inter, hellgrau, gleicher Header
   Einbinden: <link rel="stylesheet" href="css/gutzwiller.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

/* ============================================================
   GUTZWILLER.PHOTO &mdash; Unterseiten-Stil
   Passend zur Index-Seite: Inter, hellgrau, gleicher Header
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: #f5f5f5; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  background: #f5f5f5;
  padding-top: 54px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ââ HEADER ââ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(245,245,245,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e0e0e0;
}
#site-title {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
#site-title a { color: #111; }

/* ââ DESKTOP NAV ââ */
#desktop-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #888;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-pill:hover { background: #555; }
.nav-pill.active { background: #333; }

/* ââ HAMBURGER ââ */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
#hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  transition: all 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ââ MOBILE NAV OVERLAY ââ */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,245,245,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
#mobile-nav.open { display: flex; }
.mobile-pill {
  display: block;
  width: 80%;
  padding: 18px 24px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #888;
  text-align: left;
}
.mobile-pill.active { background: #333; }

/* ââ SWIPER CONTAINER ââ */
.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px;
}
.swiper { width: 100%; }
.image__wrapper {
  width: 100%;
  position: relative;
  padding-top: 66%;
}
.image__wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ââ CONTENT ââ */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.page-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.35;
}
.page-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.65;
  margin-bottom: 16px;
}
.page-content p,
.page-content span.text {
  font-size: 0.9rem;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
  display: block;
}
.page-content .label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  display: block;
}
.page-content a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover { color: #111; }

/* details/summary f&uuml;r Datenschutz */
details { margin-top: 24px; }
summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  list-style: none;
  outline: none;
}
summary::-webkit-details-marker { display: none; }
summary::before { content: '+ '; color: #888; }
details[open] summary::before { content: 'â '; }

/* ââ FOOTER ââ */
#site-footer {
  padding: 20px 24px;
  text-align: right;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 0.08em;
  border-top: 1px solid #e8e8e8;
}
#site-footer a { color: #999; }

/* ââ RESPONSIVE ââ */
@media (max-width: 700px) {
  #desktop-nav { display: none; }
  #hamburger   { display: flex; }
  .swiper-container { padding: 0 12px; margin: 16px auto; }
  .page-content { padding: 20px 16px 48px; }
}