/* ===== Grundlayout ===== */
:root{
  --blue:#0e3a66; /* dunkles Blau passend zum Logo */
  --text:#1a1a1a;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#fffdf6;    /* warmes, leicht cremefarbenes Weiß */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Times New Roman", serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

/* ===== Header ===== */
.header{
  display:flex;
  align-items:center;
  gap:20px;
  padding:10px 24px;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  background:var(--bg);
  z-index:1000;
}

.logo img{
  max-height:120px;     /* Logo deutlich kleiner */
  height:auto;
  width:auto;
  display:block;
}

/* Sprache */
.lang{margin-left:auto; white-space:nowrap; font-size:.95rem}
.lang a{color:var(--blue); text-decoration:none}
.lang a:hover{text-decoration:underline}

/* ===== Navigation ===== */
.nav-toggle{display:none}
.nav-toggle-label{
  display:none;
  font-size:28px;
  line-height:1;
  padding:6px 10px;
  cursor:pointer;
  border:1px solid var(--border);
  border-radius:6px;
}

.main-nav{order:1}
.menu{
  list-style:none; margin:0; padding:0;
  display:flex; gap:18px; align-items:center;
}
.menu > li > a{
  text-decoration:none;
  color:var(--blue);
  font-size:1rem;
  padding:8px 6px;
  display:inline-block;
}
.menu > li > a:hover{ text-decoration:underline }
.menu > li{ position:relative }

/* Submenu */
.has-sub .submenu{
  position:absolute;
  left:0; top:100%;
  background:#fff;
  border:1px solid var(--border);
  min-width:220px;
  padding:8px 0;
  list-style:none;
  display:none;
}
.has-sub:hover .submenu{ display:block }
.submenu li a{
  display:block;
  padding:8px 12px;
  color:var(--text);
  text-decoration:none;
}
.submenu li a:hover{
  background:#f9fafb;
  color:var(--blue);
}

/* ===== Hero (Binder) kleiner ===== */
.hero{
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  height:260px; /* kompakt */
  border-bottom:1px solid var(--border);
}
.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:contrast(1) brightness(.98);
}
.hero-text{
  position:absolute;
  inset:auto 24px 18px 24px;
  color:#0b1f36;
  text-shadow:0 1px 0 rgba(255,255,255,.7);
  background:rgba(255,255,255,.65);
  padding:8px 12px;
  border-radius:8px;
  max-width:1100px;
}
.hero-text h1{
  margin:0 0 6px 0;
  font-size:1.8rem;      /* H1 kleiner */
}
.hero-text p{ margin:0; font-size:1rem }

/* ===== Inhalt ===== */
.content{ padding:28px 24px; max-width:1100px; margin:0 auto }
.content h2{ margin-top:0; font-size:1.6rem }

.artwork{
  margin:20px 0;
  display:grid;
  gap:10px;
  justify-items:start;
}
.artwork img{
  width:min(100%,900px);
  height:auto;
  display:block;
  border:1px solid var(--border);
  border-radius:6px;
  background:#fff;
}
.artwork figcaption a{ color:var(--blue); text-decoration:none }
.artwork figcaption a:hover{ text-decoration:underline }

/* ===== Footer ===== */
.footer{
  border-top:1px solid var(--border);
  padding:20px 24px 30px;
  text-align:center;
  color:var(--muted);
}
.footer .footer-links{
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
  margin-bottom:6px;
}
.footer a{ color:var(--blue); text-decoration:none }
.footer a:hover{ text-decoration:underline }

/* ===== Responsive ===== */
@media (max-width: 960px){
  .logo img{ max-height:90px }
  .hero{ height:200px }
  .hero-text h1{ font-size:1.5rem }
}

@media (max-width: 720px){
  .nav-toggle-label{ display:block; order:2 }
  .main-nav{ width:100%; order:3 }
  .menu{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:#fff;
    border:1px solid var(--border);
    padding:10px;
    margin-top:8px;
  }
  .nav-toggle:checked ~ .main-nav .menu{ display:flex }
  .has-sub .submenu{ position:static; border:none; padding-left:12px }
  .hero{ height:180px }
  .hero-text{ inset:auto 12px 12px 12px }
}
