/* =====================================================================
   derlauster.de  –  Nachbau / Relaunch (statische Seite, Plesk)
   Stylesheet
   ===================================================================== */

:root{
  --blue:   #a0c7d3;   /* Inhaltsflaeche */
  --footer: #5a5e5a;   /* Fusszeile */
  --text:   #505050;   /* Flaeche / Standardtext */
  --white:  #ffffff;
  --legal:  #a0c7d3;   /* Links in der Fusszeile */
  --accent: #e8551f;   /* Orange (Punkt im Logo) */
  --field-border: #8fb1bd;
}

/* ----- Reset ----- */
*{ margin:0; padding:0; box-sizing:border-box; }
html,body{ height:100%; }
body{
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  color:var(--text);
  background:var(--blue);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }

/* ----- Layout-Grundgeruest ----- */
.page{ flex:1 0 auto; background:var(--blue); }
.container{ max-width:1000px; margin:0 auto; padding:0 24px; }

/* ===================== Kopfbereich ===================== */
.site-header{
  background:var(--blue);
  text-align:center;
  padding:46px 24px 22px;
}
.site-header .logo{ display:inline-block; line-height:0; }
.site-header .logo img{
  width:460px;
  max-width:88%;
  margin:0 auto;
}
body.home .site-header{ padding-bottom:14px; }
body.home .site-header .logo img{ width:560px; }

/* ----- Navigation ----- */
.main-nav{ margin-top:20px; }
.main-nav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:6px 26px;
}
.main-nav a{
  display:inline-block;
  font-size:18px;
  letter-spacing:.54px;
  color:var(--text);
  text-decoration:none;
  padding:4px 1px;
  border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
}
.main-nav a:hover{ color:var(--white); }
.main-nav a.active{ border-bottom-color:var(--text); }

/* Hamburger (mobil) */
.nav-toggle{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  padding:10px;
  margin:14px auto 0;
}
.nav-toggle span{
  display:block;
  width:28px;
  height:3px;
  background:var(--text);
  border-radius:2px;
}
.nav-toggle span + span{ margin-top:5px; }

/* ===================== Startseite / Hero ===================== */
.hero{
  min-height:460px;
  background:var(--blue) url('../images/hero.png') no-repeat 50% 100%;
  background-size:auto 88%;
}

/* ===================== Inhalt ===================== */
.page-title{
  font-size:clamp(34px, 6vw, 60px);
  font-weight:400;
  line-height:1.25;
  color:var(--white);
  text-align:center;
  padding:34px 0 6px;
}
.content{
  padding:6px 0 86px;
  text-align:center;
}
.content .intro{
  font-size:18px;
  font-weight:700;
  line-height:27px;
  color:var(--text);
  margin:26px auto 22px;
  max-width:820px;
}
.content p{
  font-size:18px;
  line-height:27px;
  color:var(--text);
  margin:0 auto 18px;
  max-width:760px;
}
.content p:last-child{ margin-bottom:0; }

/* ===================== Kuenstler-Raster ===================== */
.artists{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:54px 30px;
  margin:42px auto 0;
  max-width:880px;
}
.artist{ text-align:center; }
.artist-photo{
  width:200px;
  height:200px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 16px;
  background:#cde0e6;
}
.artist .name{
  font-size:16px;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--text);
}
.artist .social{
  display:inline-block;
  margin-top:10px;
  color:var(--text);
}
.artist .social svg{ width:26px; height:26px; fill:currentColor; display:block; }
.artist .social:hover{ color:var(--white); }

/* ===================== Referenzen ===================== */
.references-logos{
  display:block;
  width:100%;
  max-width:900px;
  height:auto;
  margin:30px auto 0;
}

/* ===================== Kontakt ===================== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  text-align:left;
  margin-top:30px;
}
.contact-info strong{ font-size:18px; color:var(--text); }
.contact-info p{
  font-size:18px;
  line-height:27px;
  max-width:none;
  margin:0 0 18px;
}
.contact-info a{ color:var(--text); }

.contact-form h2{
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin-bottom:18px;
}
.field{ margin-bottom:16px; }
.field label{
  display:block;
  font-size:14px;
  color:var(--text);
  margin-bottom:6px;
}
.field input,
.field textarea{
  width:100%;
  font-family:inherit;
  font-size:16px;
  color:var(--text);
  background:var(--white);
  border:1px solid var(--field-border);
  border-radius:2px;
  padding:9px 11px;
}
.field input{ height:40px; }
.field textarea{ min-height:120px; resize:vertical; }
.field input:focus,
.field textarea:focus{ outline:2px solid #fff; outline-offset:-1px; }

/* Honeypot – fuer Menschen unsichtbar */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px;
  overflow:hidden;
}

.form-actions{
  text-align:center;
  margin-top:6px;
}
.btn-submit{
  display:inline-block;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  color:var(--white);
  background:var(--footer);
  border:0;
  border-radius:2px;
  padding:12px 34px;
  cursor:pointer;
  transition:background .15s ease;
}
.btn-submit:hover{ background:#474b47; }
.btn-submit:disabled{ opacity:.6; cursor:default; }

.form-note{
  margin-top:14px;
  font-size:15px;
  padding:10px 12px;
  border-radius:2px;
  display:none;
}
.form-note.ok{ display:block; background:#dff0e6; color:#1f6b3a; }
.form-note.err{ display:block; background:#f6dede; color:#9c2b2b; }

/* ===================== Fusszeile ===================== */
.site-footer{
  flex-shrink:0;
  background:var(--footer);
  color:var(--white);
  padding:42px 24px 28px;
}
.footer-icons{
  display:flex;
  justify-content:center;
  gap:96px;
  flex-wrap:wrap;
  text-align:center;
}
.footer-icons a{
  text-decoration:none;
  color:var(--white);
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.footer-icons svg{ width:34px; height:34px; fill:none; stroke:var(--white); stroke-width:1.6; }
.footer-icons .label{ font-size:15px; }
.footer-icons a:hover .label{ text-decoration:underline; }

.footer-rule{
  max-width:760px;
  height:1px;
  background:rgba(255,255,255,.45);
  border:0;
  margin:34px auto 22px;
}
.footer-brand{
  text-align:center;
  font-size:24px;
  font-weight:700;
  color:var(--white);
}
.footer-brand .dot{ color:var(--accent); }
.footer-address{
  text-align:center;
  font-size:16px;
  color:var(--white);
  margin-top:4px;
}
.footer-legal{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 28px;
  max-width:760px;
  margin:26px auto 0;
  font-size:14px;
}
.footer-legal a{ color:var(--legal); text-decoration:none; }
.footer-legal a:hover{ text-decoration:underline; }
.footer-legal .copy{ color:var(--white); }

/* ===================== Rechtstexte ===================== */
.legal{
  text-align:left;
  max-width:860px;
  margin:0 auto;
  padding:14px 0 90px;
}
.legal h2{
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin:30px 0 6px;
}
.legal h3{
  font-size:17px;
  font-weight:700;
  color:var(--text);
  margin:18px 0 4px;
}
.legal p{
  font-size:16px;
  line-height:25px;
  color:var(--text);
  margin:0 0 12px;
}
.legal a{ color:#3c6b7a; word-break:break-word; }

/* ===================== Responsiv ===================== */
@media (max-width:860px){
  .artists{ grid-template-columns:repeat(2,1fr); gap:44px 24px; max-width:520px; }
  .contact-grid{ grid-template-columns:1fr; gap:34px; }
  .footer-icons{ gap:54px; }
}
@media (max-width:600px){
  .site-header{ padding:34px 18px 18px; }
  .site-header .logo img,
  body.home .site-header .logo img{ width:340px; }
  .main-nav{ margin-top:6px; }
  .nav-toggle{ display:block; }
  .main-nav ul{
    display:none;
    flex-direction:column;
    gap:2px;
    margin-top:10px;
  }
  .main-nav ul.open{ display:flex; }
  .main-nav a{ padding:9px 4px; font-size:17px; }
  .main-nav a.active{ border-bottom-color:transparent; color:var(--white); }
  .hero{ min-height:300px; background-size:auto 70%; }
  .content{ padding-bottom:60px; }
  .artists{ grid-template-columns:1fr; max-width:280px; gap:40px; }
  .footer-icons{ gap:30px; }
  .footer-legal{ justify-content:center; text-align:center; }
}
