    /* Provisorische Zusatz-Styles NUR für diese Seite */
    .hero{ align-items: stretch; }
    .hero-card{ position:relative; }

    /* Layout: Kalender links, Formular rechts */
    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:18px;
    }
    @media (max-width: 980px){
      .two-col{ grid-template-columns: 1fr; }
    }

    /* Partyraum-Bild in einer großen weißen Box */
    .photo{
      border-radius: 22px;
      overflow:hidden;
      border: 1px solid rgba(27,35,64,.10);
      box-shadow: var(--shadow-soft);
      background: rgba(255,255,255,.85);
      aspect-ratio: 16/9;
    }
    .photo img{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
    }

    /* Kalender */
    .cal-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
      flex-wrap:wrap;
    }
    .cal-title{
      display:flex;
      align-items:baseline;
      gap:10px;
      flex-wrap:wrap;
    }
    .month{
      font-family:"Titan One", cursive;
      font-weight:400;
      letter-spacing:.6px;
      color: var(--darkblue);
      font-size: 20px;
    }
    .cal-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .cal-grid{
      display:grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap:10px;
    }
    .dow{
      font-size:12px;
      font-weight:900;
      letter-spacing:.6px;
      text-transform:uppercase;
      color: rgba(27,35,64,.62);
      text-align:center;
      padding:6px 0;
    }

    .day{
      border-radius:16px;
      border:1px solid rgba(27,35,64,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 10px 18px rgba(27,35,64,.08);
      padding:10px;
      min-height:64px;
      cursor:pointer;
      transition:.16s ease;
      position:relative;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .day:hover{ transform: translateY(-1px) rotate(-.15deg); }
    .day.muted{
      opacity:.45;
      cursor:default;
    }
    .day.selected{
      outline: none;
      border-color: rgba(71,193,240,.55);
      box-shadow: 0 0 0 4px rgba(71,193,240,.18), 0 10px 18px rgba(27,35,64,.08);
    }
    .dnum{
      font-weight:900;
      color: rgba(27,35,64,.90);
      line-height:1;
    }

    /* Status-Dots */
    .dots{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; margin-top:auto; }
    .dotx{
      width:10px; height:10px; border-radius:999px;
      border:1px solid rgba(27,35,64,.12);
      background: rgba(149,193,31,.35); /* frei */
    }
    .dotx.pending{ background: rgba(249,178,51,.55); border-color: rgba(249,178,51,.35); }
    .dotx.reserved{ background: rgba(234,78,64,.55); border-color: rgba(234,78,64,.35); }

    .legend{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:12px;
      color: rgba(27,35,64,.72);
      font-weight:900;
      font-size:13px;
      align-items:center;
    }
    .legend span{ display:inline-flex; align-items:center; gap:8px; }

    /* Slot-Buttons */
    .slots{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:8px;
    }
    .slot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(27,35,64,.10);
      background: rgba(255,255,255,.80);
      font-weight:900;
      color: rgba(27,35,64,.86);
      cursor:pointer;
      transition:.16s ease;
    }
    .slot:hover{ transform: translateY(-1px); }
    .slot.active{
      border-color: rgba(71,193,240,.45);
      box-shadow: 0 0 0 4px rgba(71,193,240,.14);
    }
    .slot[disabled]{
      opacity:.45;
      cursor:not-allowed;
      transform:none !important;
    }

    .notice{
      border-radius: 18px;
      border:1px solid rgba(27,35,64,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      box-shadow: 0 10px 18px rgba(27,35,64,.08);
      color: rgba(27,35,64,.78);
      font-weight:800;
      line-height:1.45;
    }

    /* Modal */
    .modal-overlay{
      position: fixed;
      inset: 0;
      background: rgba(27,35,64,.42);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 9999;
    }
    .modal-overlay.open{ display:flex; }

    .modal{
      width: min(560px, 100%);
      border-radius: 22px;
      border: 1px solid rgba(27,35,64,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 40px rgba(27,35,64,.22);
      padding: 14px;
      backdrop-filter: blur(6px);
    }

    .modal-head{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 6px;
    }
    .modal-head h3{ margin: 0; }

    .modal-close{
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(27,35,64,.10);
      background: rgba(255,255,255,.86);
      cursor: pointer;
      font-size: 22px;
      line-height: 0;
      font-weight: 900;
      color: rgba(27,35,64,.72);
    }
    .modal-close:hover{ transform: translateY(-1px); }

    .modal-body{
      color: rgba(27,35,64,.82);
      font-weight: 800;
      line-height: 1.5;
      padding: 8px 2px 2px;
    }
    .modal-actions{
      display:flex;
      justify-content:flex-end;
      gap: 10px;
      margin-top: 14px;
    }

.day.disabled{
  opacity: .35;
  pointer-events: none;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,.04),
    rgba(0,0,0,.04) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* Kalender: Monatsnavigation stabil */
.cal-actions{
  display: flex;
  gap: 6px;
  min-width: 260px;        /* verhindert Springen */
  justify-content: flex-end;
}

/* Buttons selbst */
.cal-actions .btn{
  font-size: 15px;         /* kleinerer Text */
  padding: 6px 10px;
  white-space: nowrap;     /* niemals umbrechen */
}

.cal-actions .btn{
  min-width: 120px;
  text-align: center;
}

textarea {
  width: 100%;
  font: inherit;
}

/* Checkbox rows in form */
.checkrow{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:800;
  color: rgba(27,35,64,.82);
}
.checkrow input[type="checkbox"]{
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}


/* Payment box */
.pay-box{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(27,35,64,.10);
  background: rgba(255,255,255,.70);
}

.pay-row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.pay-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.pay-text{
  font-weight: 800;
  color: rgba(27,35,64,.86);
  line-height: 1.35;
}

.pay-hint{
  margin: 10px 0 0;
  color: rgba(27,35,64,.72);
  font-weight: 800;
  line-height: 1.4;
}

.pay-default{
  margin: 8px 0 0;
  color: rgba(27,35,64,.62);
  font-weight: 800;
  line-height: 1.35;
}


    /* Mobile: Geburtstagspunkte kleiner + nebeneinander */
@media (max-width: 520px) {
  .day .dots{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;          /* verhindert untereinander */
    justify-content: center;
    align-items: center;
    gap: 4px;                   /* kleinerer Abstand */
    margin-top: 4px;
  }

  .day .dotx{
    width: 8px;                 /* kleiner */
    height: 8px;                /* kleiner */
    border-width: 2px;          /* falls du einen Border nutzt */
    border-radius: 999px;
    flex: 0 0 auto;             /* niemals schrumpfen/umbrechen */
  }
}
@media (max-width: 520px){
  .cal-actions{
    min-width: 200px;
  }

  .cal-actions .btn{
    font-size: 12px;
    padding: 5px 8px;
  }
}



/* --- MOBILE HEADER FIX (keep nav compact) --- */
@media (max-width: 560px){

  /* less vertical padding */
  .nav{
    padding: 10px 12px;
    gap: 10px;
  }

  /* slightly smaller logo */
  .brand img{
    height: 34px;
  }

  /* IMPORTANT: stop wrapping + allow horizontal scroll */
  .navlinks{
    width: 100%;
    flex-wrap: nowrap;              /* override your flex-wrap:wrap */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;    /* looks nicer for scrolling */
    padding-bottom: 4px;
    gap: 8px;
  }

  .navlinks a{
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 14px;
  }

  /* optional: hide scrollbar */
  .navlinks::-webkit-scrollbar{ display:none; }
  .navlinks{ scrollbar-width:none; }
}

.info-btn{
  margin-left: 8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);      /* 🔵 blauer Hintergrund */
  color: #fff;                  /* weißes i */
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(27,35,64,.10);
  transition: all .15s ease;
}

.info-btn:hover{
  background: #fff;             /* 🤍 weiß beim Hover */
  color: var(--blue);           /* blaues i */
}

.info-btn:focus{
  outline: 3px solid rgba(27,35,64,.18);
  outline-offset: 2px;
}

.photo-with-caption{
  position: relative;
  overflow: hidden; /* wichtig für saubere Ecken */
}

.photo-with-caption img{
  display: block;
  width: 100%;
  height: auto;
}

.photo-caption{
  position: absolute;
  right: 10px;
  bottom: 8px;
  margin: 0;
  padding: 4px 8px;
  font-size: 12px;

  color: #fff;
  background: rgba(0,0,0,.45);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}