/* ========== Grundlayout ========== */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-image: url('../assets/image/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Raleway', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== Karte ========== */
.box {
  width: 400px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 30px;
  display: flex;
  transition: box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.box:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

/* ========== Texte ========== */
h1,
h2,
p,
a {
  color: rgb(0, 0, 0);
  font-weight: 200;
  margin: 20px 0;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Überschrift leicht höher positionieren */
h1 {
  font-size: 2rem;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.net {
  text-transform: uppercase;
  font-weight: 600;
  color: #2a5a9d;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35),
    /* Tiefe */ 0 0 8px rgba(42, 90, 157, 0.4),
    /* sanftes Leuchten */ 0 0 12px rgba(42, 90, 157, 0.25); /* weicher Außenhalo */
}

h2 {
  font-size: 1.3rem;
  opacity: 0.85;
  margin-top: 5px;
}

/* E-Mail-Link */
.email-link {
  font-size: 0.95rem;
  color: #2a5a9d;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.email-link:hover {
  color: #1a3e6b;
  text-shadow: 0 0 6px rgba(42, 90, 157, 0.3);
}

/* Letzter Satz am unteren Rand */
.bottom-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: #e72424;
  margin-top: auto; /* schiebt ihn ganz nach unten */
  text-align: center;
  letter-spacing: 0.3px;
}

/* ========== Tönung ========== */
.blurred-bg.tinted {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) brightness(1.05);
  -webkit-backdrop-filter: blur(20px) brightness(1.05);
}
