:root {
  --primary-color: #fa0081;
  --primary-hover: #fa0081;
  --card-radius: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Haupt-Container mit abgerundeten Ecken */
.contact-banner-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #09090e;
}

/* Banner-Bereich */
.banner-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #09090e;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(100%) contrast(125%);
  transition: all 0.5s ease-in-out;
}

.contact-banner-container:hover .banner-img {
  transform: scale(1.03);
  opacity: 0.45;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #09090e 0%, rgba(9, 9, 14, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

/* Halbtransparente Kontakt-Karte mit gepunktetem dot.png Layer */
.contact-card {
  background: rgba(18, 18, 29, 0.65) url('../images/bg/dot.png') repeat;
  background-blend-mode: overlay;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3.5rem 2.5rem;
  position: relative;
}

/* Header-Schriften */
.contact-header {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-color: rgba(255, 255, 255, 0.08) !important;
  text-shadow: 0 0 15px rgba(157, 0, 255, 0.35);
}

/* Info Items & Icons im Neon-Look */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 16, 131, 0.04);
  border: 1px solid rgba(255, 16, 131, 0.2);
  box-shadow: 0 0 15px rgba(255, 16, 131, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-item:hover .info-icon {
  background: rgba(255, 16, 131, 0.15);
  border-color: #FF1083;
  box-shadow: 0 0 25px rgba(255, 16, 131, 0.35);
  transform: scale(1.05) translateY(-2px);
}

.contact-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.contact-value {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-link, .contact-email-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.contact-link:hover, .contact-email-link:hover {
  color: #FF1083;
  text-shadow: 0 0 10px rgba(255, 16, 131, 0.5);
}

/* Öffnungszeiten Tabelle */
.hours-list {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row:first-child {
  padding-top: 0;
}

.hours-day {
  font-weight: 600;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.hours-time {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Glow Info Box am Fuß */
.info-box-neon {
  background: rgba(157, 0, 255, 0.03) !important;
  border: 1px solid rgba(157, 0, 255, 0.15) !important;
  border-left: 3px solid var(--neon-pink) !important;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.05);
}

/* Mobile Anpassungen */
@media (max-width: 767.98px) {
  .banner-wrapper {
    height: 240px;
  }
  .banner-overlay {
    padding: 1.5rem;
  }
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  .info-item {
    margin-bottom: 1.5rem;
  }
}