/* ============================
   Obscura Kink – styles.css
   Bereinigt & konsolidiert
   ============================ */

/* ---------- Allgemein ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #e4e2e2;
  text-align: center;
  background: radial-gradient(circle at center, #2a2a2a 0%, #111 100%);
  background-attachment: fixed;
}

/* ---------- Logo mit animiertem Metallglanz ---------- */
.logo-header {
  background: linear-gradient(135deg, #4a4a4a, #1e1e1e, #4a4a4a);
  background-size: 200% 200%;
  animation: metal-glow 12s ease infinite;
  padding: 30px 0;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}
@keyframes metal-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) { .logo { max-width: 800px; } }
@media (min-width: 1200px) { .logo { max-width: 1000px; } }

.ticker-container {
  width: 100%;
  overflow: hidden;
  background: none;
  border: none;
}
.ticker-text {
  display: flex;
  width: fit-content;
  animation: scrollTicker 15s linear infinite;
}
.ticker-text span {
  white-space: nowrap;
  color: #f7f4f4;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0 2rem;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(255, 247, 247, 0.3);
}
@keyframes scrollTicker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---------- Info-Block ---------- */
.info-section {
  padding: 50px 20px;
  color: #fff;
  background: transparent;
}
.info-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6em;
}
.info-container h2 { font-size: 1.8em; margin-bottom: 20px; }
.info-container a { color: #a2bfe2; text-decoration: underline; }
.info-container .lead { font-size: 1.25rem; line-height: 1.6; }

/* ---------- Buttons (Grundstil) ---------- */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #3b3a3a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}
.button:hover {
  background-color: #555;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}

/* ---------- Altersabfrage ---------- */
.age-gate-box {
  background: #222;
  color: #f0f0f0;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.age-gate-box h2 { margin-bottom: 1rem; font-size: 1.5rem; }
.age-gate-box p  { margin-bottom: 1.5rem; font-size: 1rem; }
.age-gate-box button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #3b3a3a;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.age-gate-box button:hover { background-color: #666; }

/* ---------- Formularbereiche (gemeinsam) ---------- */
.registration-section { display: none; margin: 20px auto; }

.domina-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 400px;
  margin: auto;
}
.domina-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.domina-form label { margin-bottom: 0.5rem; font-weight: bold; }
.domina-form input,
.domina-form textarea,
.domina-form button { width: 100%; box-sizing: border-box; }

/* Vorschau-Block */
#previewArea { text-align: left; margin-top: 2rem; }
#previewArea img {
  display: block;
  max-height: 200px;
  margin: 0 auto 20px auto;
  border-radius: 6px;
}

/* ---------- Kontakt-Popup ---------- */
#contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}
.contact-box {
  position: relative;
  background: #222;
  color: #e4e2e2;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 600px;
  width: 80%;
  box-sizing: border-box;
  text-align: left;
}
.contact-box .close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #bbb;
  cursor: pointer;
}
.contact-box form { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-box label { font-weight: bold; margin-bottom: 0.25rem; }
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #dfd9d9;
  border-radius: 4px;
  background: #1e1e1e;
  color: #fff;
  box-sizing: border-box;
}
.contact-box textarea { resize: vertical; min-height: 120px; }
.contact-box .submit-btn,
.contact-box .back-btn {
  width: auto;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}
.contact-box .submit-btn { background: #3b3a3a; color: #e4e2e2; }
.contact-box .submit-btn:hover { background: #666; }
.contact-box .back-btn { background: #444; color: #e4e2e2; }
.contact-box .back-btn:hover { background: #666; }

@media (max-width: 600px) {
  .contact-box { max-width: 90%; padding: 1.5rem; }
}

/* ---------- Opt-In Fieldset ---------- */
.optin-fieldset { border: none; margin: 1.5rem 0; padding: 0; text-align: left; }
.optin-fieldset legend { font-weight: bold; margin-bottom: 0.5rem; }
.optin-options { display: flex; gap: 2rem; }
.optin-options label { display: flex; align-items: center; cursor: pointer; font-size: 0.95rem; }
.optin-options input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.optin-options .circle {
  display: inline-block; width: 1rem; height: 1rem; margin-right: 0.5rem;
  border: 2px solid #e4e2e2; border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.optin-options input[type="radio"]:checked + .circle {
  background: #e4e2e2; border-color: #e4e2e2;
}

/* ---------- Footer ---------- */
.site-footer { margin: 4rem 0 2rem; font-size: 0.9rem; color: #888; }
.site-footer a { color: #aaa; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ---------- Formular-Layout (Events/SM/Shop etc.) ---------- */
.container {
  max-width: 500px;
  margin: 50px auto;
  background: rgba(30, 30, 30, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: left;
}
.container h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 1.5rem 0;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
label { font-weight: bold; }
input, textarea, select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background: #222;
  border: 1px solid rgba(200, 80, 80, 0.4);
  border-radius: 4px;
  color: #e4e2e2;
  box-sizing: border-box;
  box-shadow: 0 0 5px rgba(200, 80, 80, 0.1);
}
textarea { min-height: 100px; resize: vertical; }
input[type="file"] { padding: 6px; background: #111; }
input[type="text"]#captcha { width: 80px; padding: 6px; text-align: center; }
.radio-group { display: flex; gap: 2rem; margin-top: 0.5rem; }
.radio-group label { font-weight: normal; }
button {
  background: #3b3a3a;
  color: #e4e2e2;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover { background: #555; }
#previewArea { text-align: left; margin-top: 2rem; }
#previewArea img {
  display: block;
  max-height: 200px;
  margin: 0 auto 20px auto;
  border-radius: 6px;
}
.dates input { margin-bottom: 0.5rem; }

@media (max-width: 600px) {
  .container { max-width: 90%; margin: 20px auto; padding: 1rem; }
}

/* ---------- Gesperrter Button mit rotem Kreuz ---------- */
.button--locked {
  position: relative;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.button--locked::after {
  content: "✖";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 0, 0, 0.9);
  text-shadow: 0 0 6px rgba(255,0,0,0.35);
  pointer-events: none;
  z-index: 5;
}

/* =========================================================
   EINHEITLICHE STARTSEITEN-BUTTONS (der einzig nötige Block)
   ========================================================= */
.trigger-container {
  display: flex;
  flex-direction: column;     /* Buttons untereinander */
  align-items: center;
  gap: 18px;
  margin: 2rem 0;
}

.trigger-container > .button,
.trigger-container > button,
.trigger-container > a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 280px;               /* feste Breite */
  height: 56px;               /* feste Höhe */

  padding: 0 16px;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  box-sizing: border-box;
}

@media (max-width: 360px) {
  .trigger-container > .button,
  .trigger-container > button,
  .trigger-container > a.button {
    width: 92vw;
    height: 52px;
  }
}
/* ► Einheitliche Startseiten-Buttons nebeneinander (Desktop) und untereinander (Mobil) */
.trigger-container {
  display: flex;
  flex-wrap: wrap;       /* erlaubt Umbruch, falls nicht genug Platz */
  justify-content: center;
  gap: 18px;
  margin: 2rem 0;
}

.trigger-container .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 56px;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

/* Auf dem Handy: Buttons untereinander */
@media (max-width: 768px) {
  .trigger-container {
    flex-direction: column;
    align-items: center;
  }
}















