/* ================= HOME ================= */

.Home.Cover{
  min-height:100vh;
  margin:0;

  background-image:
    linear-gradient(
      to right,
      rgba(0,0,0,0.98) 0%,
      rgba(0,0,0,0.90) 20%,
      rgba(0,0,0,0.60) 44%,
      rgba(0,0,0,0.20) 70%,
      rgba(0,0,0,0.06) 100%
    ),
    url("/assets/images/Bild01.png");

  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;

  overflow:hidden;
}

/* ================= LAYOUT ================= */

.Cover-layout{
  min-height:100vh;
  display:flex;
  align-items:flex-start;
}

.Cover-textLayout{
  padding-top:90px;
  padding-left:clamp(96px,9vw,190px);
  padding-right:24px;
}

/* ================= TITEL ================= */

.Cover-textTitle{
  font-size:90px;
  letter-spacing:.11em;
  line-height:.92;
  margin:0 0 8px;
  text-transform:uppercase;

  color:rgba(228,228,186,.83);

  text-shadow:
    0 1px 0 rgba(0,0,0,.9),
    0 0 9px rgba(170,175,125,.65);
}

.title-tagline{
  margin-top:12px;
  font-size:13px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:rgba(200,205,190,.58);
}

/* ================= TEXT ================= */

.Cover-text{
  max-width:440px;
  font-size:14px;
}

.Cover-text.roadtoalpha-text,
.Cover-text.roadtoalpha-text p{
  color:rgba(200,205,190,.82);
  font-weight:600;
  text-shadow:
    0 1px 0 rgba(0,0,0,.85),
    0 0 6px rgba(120,125,95,.28);
}

.Cover-text.roadtoalpha-text b{
  font-weight:800;
  color:rgba(225,230,215,.92);
}

/* ================= PREVIEW IMAGES ================= */

/* 🔥 FIX: Breite auf den CONTAINER */
.newsletter-preview{
  display:inline-block;
  width:180px;                 /* ← HIER */
  margin:10px 6px 0;
  border-radius:14px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.16);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(0,0,0,.35)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 8px 22px rgba(0,0,0,.75);
}

/* 🔥 FIX: Image folgt Container */
.newsletter-preview img{
  display:block;
  width:100%;                  /* ← statt 180px */
  height:auto;
}

.newsletter-preview:hover{
  border-color:rgba(159,214,179,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 0 18px rgba(159,214,179,.25),
    0 10px 26px rgba(0,0,0,.85);
}

/* ================= NEWSLETTER ================= */

.newsletter{
  margin-top:12px;
  padding-top:4px;
  text-align:center;
}

.newsletter-inner{
  max-width:460px;
  margin:0 auto;
}

.newsletter-label{
  font-size:10px;
  letter-spacing:.38em;
  text-transform:uppercase;
  color:rgba(238,242,238,.48);
  margin:0;
  line-height:1;
}

.newsletter-title{
  margin:0;
  padding:4px 10px 10px;
  font-size:15px;
  font-weight:800;
  letter-spacing:.18em;
  line-height:.95;
  text-transform:uppercase;
  color:rgba(228,228,186,.85);
}

.newsletter-form{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin:0;
}

.newsletter-form input{
  width:280px;
  padding:6px 10px 4px;
  line-height:1;
  font-size:16px;

  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;

  color:var(--text);
}

.newsletter-form button{
  padding:5px 14px;
  line-height:1;
  font-size:16px;
  letter-spacing:.22em;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.20);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.14),
      rgba(0,0,0,.55)
    );

  color:rgba(228,228,186,.9);
}

/* ================= NEWSLETTER UX ================= */

/* ---------- FEEDBACK VISIBILITY ---------- */

#newsletter-feedback{
  margin-top:8px;
  font-size:15px;
  letter-spacing:.18em;
  line-height:1.3;
  text-align:center;

  opacity:0;
  transform:translateY(-4px);
  transition:
    opacity .4s ease,
    transform .4s ease;
}

#newsletter-feedback.is-success,
#newsletter-feedback.is-error,
#newsletter-feedback.is-info{
  opacity:1;
  transform:translateY(0);
}

/* ---------- SUCCESS (soft green glow) ---------- */

#newsletter-feedback.is-success{
  color:rgba(180,200,170,.88);
  text-shadow:
    0 0 6px rgba(120,150,120,.35),
    0 0 12px rgba(120,150,120,.18);

  filter:drop-shadow(0 0 1px rgba(120,160,130,.45));
}

/* ---------- ERROR ---------- */

#newsletter-feedback.is-error{
  color:rgba(210,140,120,.82);
  text-shadow:
    0 0 6px rgba(180,90,70,.35);
}

/* ---------- INFO ---------- */

#newsletter-feedback.is-info{
  color:rgba(180,180,200,.82);
  text-shadow:
    0 0 6px rgba(120,120,150,.35);
}

/* ---------- BUTTON & INPUT INTERACTION ---------- */

.newsletter-form input,
.newsletter-form button{
  transition:
    background .25s ease,
    box-shadow .25s ease,
    transform .15s ease,
    border-color .25s ease;
}

/* INPUT FOCUS */

.newsletter-form input:focus{
  outline:none;
  border-color:rgba(159,214,179,.45);

  box-shadow:
    0 0 0 1px rgba(159,214,179,.25),
    0 0 12px rgba(159,214,179,.18);
}

/* BUTTON STATES */

.newsletter-form button{
  cursor:pointer;
}

.newsletter-form button:hover{
  border-color:rgba(159,214,179,.45);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.22),
      rgba(0,0,0,.48)
    );

  box-shadow:
    0 0 14px rgba(159,214,179,.22),
    0 6px 18px rgba(0,0,0,.75);
}

.newsletter-form button:active{
  transform:translateY(1px) scale(.985);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.10),
      rgba(0,0,0,.65)
    );

  box-shadow:
    0 3px 10px rgba(0,0,0,.8);
}

/* ---------- DISABLED ---------- */

.newsletter-form button.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}

.newsletter-form button.no-hover{
  pointer-events:none;
}

/* ---------- MOBILE TUNING ---------- */

@media (max-width:640px){

  .newsletter-form{
    flex-direction:column;
    gap:8px;
  }

  .newsletter-form input,
  .newsletter-form button{
    width:100%;
    font-size:18px;      /* größer auf Mobile */
    padding:10px 14px 9px;
  }

  #newsletter-feedback{
    font-size:14px;
    letter-spacing:.14em;
  }
}

/* ---------- MAIL ICON ---------- */

.newsletter-mailicon{
  font-size:25px;                 /* vorher ~15–16 → jetzt präsenter */
  margin-right:6px;
  opacity:.75;

  color:rgba(200,205,190,.85);

  text-shadow:
    0 0 6px rgba(120,150,120,.18);

  transition:
    opacity .25s ease,
    text-shadow .25s ease;
}

/* optional: ganz leichte Reaktion bei Fokus im Input */
.newsletter-form:focus-within .newsletter-mailicon{
  opacity:.95;
  text-shadow:
    0 0 8px rgba(140,170,150,.28);
}
