:root{
  --bg: #0b0d10;
  --panel: #12151b;
  --panel-2: #161a22;
  --text: #d9e1ea;
  --muted: #9aa6b2;
  --brand: #ff6a00;
  --brand-2: #ffb300;
  --accent: #4fb8ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,106,0,.10), transparent 60%),
    radial-gradient(900px 500px at 80% -20%, rgba(79,184,255,.12), transparent 60%),
    var(--bg);
  background-attachment: fixed;   /* Hintergrund bleibt fix */
  background-size: cover;         /* über gesamte Seite */
  background-repeat: no-repeat;   /* keine Wiederholung */
  color: var(--text);
  font: 16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.wrap {
  width: 100%;
  max-width: 980px;
  padding: 18px;
  margin-top: 120px; /* Höhe des Headers freihalten */
}


/* Header */
.site-header {
  width: 100%;
  position: fixed;   /* dauerhaft fixiert */
  top: 0;
  left: 0;
  background: rgba(11,13,16,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 100;
}

.header-inner{
  max-width:980px; margin:0 auto; padding:10px 18px;
  display:flex; align-items:center; gap:12px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:42px;height:42px}
.brand .name{font-weight:700; font-size:18px}
.brand .tag{font-size:12px; color:var(--muted)}
.ribbon{font-size:12px;color:var(--muted); margin-left:auto}

/* Sections */
.section{margin:26px 0}
.tile{
  background:linear-gradient(180deg, var(--panel), var(--panel-2));
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow:hidden;
}
.section header{padding:16px 18px; border-bottom:1px solid rgba(255,255,255,.06)}
.section header h2,.section header h3{margin:0}
.section .content{padding:18px}

/* Hero */
.hero{
  background:linear-gradient(135deg, rgba(255,106,0,.18), rgba(79,184,255,.14));
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:30px 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  width:100%;
  max-width:980px;
}
.hero h1{margin:0 0 6px 0; font-size:36px; line-height:1.1}
.hero p{margin:8px 0 18px 0; color:var(--muted)}
.social{display:flex;flex-wrap:wrap;gap:10px}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  background:#1d232e; color:#fff; text-decoration:none;
  border:1px solid rgba(255,255,255,.08);
  padding:10px 14px; border-radius:999px; font-weight:600;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn .dot{width:8px;height:8px;background:var(--accent);border-radius:999px;display:inline-block}
.btn.threads .dot{background:#ef8236}
.btn.insta .dot{background:#d62976}
.btn.signal .dot{background:#3a76f0}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18)}

/* Shot (cropped top preview) */
.shot{max-width: 920px; margin:14px auto 8px}
.shot a.lightbox{display:block; height:360px; overflow:hidden; border-radius:12px; box-shadow:0 8px 26px rgba(0,0,0,.4); border:1px solid rgba(255,255,255,.08)}
.shot a.lightbox img{width:100%; height:100%; object-fit:cover; object-position:top; display:block}

/* Retro-Box */
.retro{padding:16px 18px; background:rgba(255,106,0,.06); border-top:1px dashed rgba(255,106,0,.35)}
.retro h4{margin:0 0 6px 0; color:#ffc36a}

/* Gallery */
.gallery-modern{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px}
.gallery-modern a{display:block; overflow:hidden; border-radius:10px; border:1px solid rgba(255,255,255,.06)}
.gallery-modern img{width:100%;height:160px;object-fit:cover;object-position:center;display:block}

/* Lightbox */
.lightbox-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.92);
  display:none; align-items:center; justify-content:center; z-index:1000;
}
.lightbox-overlay img{max-width:92%; max-height:92%; border-radius:10px; box-shadow:0 0 30px rgba(0,0,0,.8)}

/* Utility */
.centered{margin:20px 0; text-align:center}
.centered figcaption{color:var(--muted); margin-top:6px}
.centered img{max-width:320px; border-radius:10px; box-shadow:0 8px 24px rgba(0,0,0,.35)}
.centered.small img{max-width:260px}
.lead{color:var(--muted)}


/* Neue Linkgestaltung */
a{
  display:inline-block;
  background:rgba(79,184,255,0.12);
  color:var(--accent);
  padding:4px 9px;
  border-radius:8px;
  border:1px solid rgba(79,184,255,0.25);
  text-decoration:none;
  font-weight:600;
  transition:all .2s ease;
}
a:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* Gästebuch Formular */
.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.guestbook-form label {
  font-weight: 600;
  color: var(--muted);
}

.guestbook-form input[type="text"],
.guestbook-form textarea {
  width: 100%;
  max-width: 480px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #1d232e;
  color: var(--text);
  font-size: 15px;
}

.guestbook-form textarea {
  min-height: 100px;
  resize: vertical;
}

.guestbook-form button {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .08s ease;
}

.guestbook-form button:hover {
  background: var(--brand);
  transform: translateY(-1px);
}



/* Gästebuch – Honeypot unsichtbar für Menschen & Screenreader */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* Gästebuch Einträge */
.guestbook-entry {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.guestbook-entry strong {
  color: var(--accent);
  display: inline-block;
  margin-bottom: 4px;
}

.guestbook-entry span {
  color: var(--muted);
  font-size: 13px;
}


.gb-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  color: #4fff88;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.gb-error {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff6a6a;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

