/* =========================
   Detail Page Layout
========================= */
.detail-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 32px 24px 80px;
}

.btn_zurück {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.btn_zurück i { font-size: 13px; color: #7a8c80; }
.btn_zurück a {
  color: #7a8c80;
  text-decoration: none;
  transition: color .18s;
}
.btn_zurück a:hover { color: #1a9e53; }

.detailsundcurrent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* =========================
   Info Panel (left)
========================= */
.details_werbetafeln {
  background: #ffffff;
  border: 1.5px solid #e2e8e4;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.details_werbetafeln h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111a14;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Info rows */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4f1;
}
.info-item:last-of-type { border-bottom: none; }

.info-item i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #e8fdf1;
  color: #1a9e53;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #3a4a3e;
  line-height: 1.5;
  margin: 0;
}

.info-item a {
  color: #1a9e53;
  font-weight: 600;
  text-decoration: none;
}
.info-item a:hover { text-decoration: underline; }

/* Description */
.billboard-description {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #7a8c80;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f4f1;
}

/* =========================
   Booking Form
========================= */
.booking-form-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid #e8ede9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form-wrap .form-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111a14;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #3a4a3e;
  letter-spacing: .03em;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #111a14;
  background: #ffffff;
  border: 1.5px solid #c0c8c3;
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46,204,113,.13);
  outline: none;
}

.form-group input[type="file"] {
  padding: 9px 12px;
  cursor: pointer;
  color: #7a8c80;
}

.form-group small {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: #7a8c80;
  line-height: 1.4;
}

/* Week Picker Card */
.week-picker-card {
  margin-bottom: 20px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f7fcf9;
  border-bottom: 1px solid #e2e8e4;
}

.calendar-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #111a14;
}

.calendar-head .nav {
  width: 30px;
  height: 30px;
  border: 1.5px solid #c0c8c3;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #3a4a3e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
}
.calendar-head .nav:hover {
  border-color: #2ecc71;
  background: #e8fdf1;
  color: #1a9e53;
}

.wochen-container {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.week-picker-error {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  color: #e74c3c;
  padding: 0 12px 10px;
  min-height: 20px;
}

/* Submit Button */
.button-yellow {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  background: #2ecc71;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .18s, transform .15s;
  margin-top: 4px;
}
.button-yellow:hover {
  background: #1a9e53;
  transform: translateY(-1px);
}

/* Login prompt */
.login-prompt {
  margin-top: 20px;
  padding: 16px;
  background: #f7fcf9;
  border: 1px solid #ddeee3;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: #7a8c80;
  text-align: center;
}
.login-prompt a {
  color: #1a9e53;
  font-weight: 600;
  text-decoration: none;
}
.login-prompt a:hover { text-decoration: underline; }

/* =========================
   Image Panel (right)
========================= */
.currentspot {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.currentspot-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 420px;
  border: 1.5px solid #e2e8e4;
  display: block;
}

/* Quick stats under image */
.currentspot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-pill {
  background: #f7fcf9;
  border: 1.5px solid #e2e8e4;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-pill span:first-child {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111a14;
}

.stat-pill span:last-child {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: #7a8c80;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* =========================
   Responsive
========================= */
@media (max-width: 860px) {
  .detailsundcurrent {
    grid-template-columns: 1fr;
  }
  .currentspot {
    position: static;
    order: -1;
  }
  .currentspot-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .detail-page { padding: 20px 16px 60px; }
  .details_werbetafeln { 
    padding: 22px 18px;
    overflow: hidden;
    box-sizing: border-box;
  
  }
  .currentspot-stats { grid-template-columns: 1fr 1fr; }
}