/* Design tokens */
:root {
  --navy: #083b5c;
  --blue: #087ea4;
  --sky: #dff4f7;
  --sand: #f5ead7;
  --coral: #ef7d57;
  --white: #fff;
  --ink: #17313f;
  --muted: #67808b;
  --shadow: 0 16px 40px rgba(8, 59, 92, 0.14);
}

/* Base */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 0;
  padding-top: 116px;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1160px, 92%);
  margin: auto;
  min-width: 0;
}

/* Header and navigation */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar i {
  font-size: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.topbar .fa-envelope {
  font-size: 20px;
}

.topbar-divider {
  margin: 0 8px;
}

header {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  backdrop-filter: blur(20px) saturate(165%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 8px 28px rgba(8, 59, 92, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  color: var(--navy);
}
.brand img {
  display: block;
  width: auto;
  height: 62px;
  max-width: 210px;
}
.brand svg {
  display: block;
  width: auto;
  height: 62px;
}
.brand small {
  display: block;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 126, 164, 0.25);
}

.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 20px rgba(239, 125, 87, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: white;
}
.mobile-toggle {
  display: none;
  padding: 0.4rem;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Home hero */
.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    120deg,
    rgba(5, 45, 68, 0.82),
    rgba(8, 126, 164, 0.45)
  );
}

.hero:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 85px;
  background: white;
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 850px;
  padding: 5rem 1rem 8rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: #aee8ef;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  margin: 0.6rem 0 1.2rem;
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2rem;
}

/* Location selection */
.choice-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(#fff, #f7fbfc);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head h2 {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0.3rem 0;
}
.section-head p {
  color: var(--muted);
  line-height: 1.7;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.location-card-link {
  display: block;
  border-radius: 28px;
  outline-offset: 5px;
}
.location-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.location-card-link:hover,
.location-card-link:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(8, 59, 92, 0.2);
}
.location-image {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.location-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(5, 45, 68, 0.55));
}
.location-badge {
  position: absolute;
  z-index: 2;
  left: 1.4rem;
  bottom: 1.2rem;
  background: white;
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
}
.location-body {
  padding: 1.8rem;
}
.location-body h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 0.7rem;
}
.location-body p {
  color: var(--muted);
  line-height: 1.7;
}
.meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
  color: var(--navy);
  font-weight: 700;
}

/* Steps */
.steps {
  padding: 5rem 0;
  background: var(--sand);
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 24px;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}
.step h3 {
  color: var(--navy);
  font-size: 1.35rem;
}
.step p {
  color: var(--muted);
  line-height: 1.6;
}

/* Location pages */
.page-hero {
  padding: 8rem 0 7rem;
  color: white;
  background:
    linear-gradient(120deg, rgba(8, 59, 92, 0.9), rgba(8, 126, 164, 0.6)),
    var(--bg) center/cover;
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0.5rem 0;
}
.page-hero p {
  max-width: 650px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.content-section {
  padding: 4.5rem 0;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.photo {
  min-height: 430px;
  border-radius: 28px;
  background: var(--photo) center/cover;
  box-shadow: var(--shadow);
}
.copy h2 {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 2.7rem;
  margin: 0.3rem 0;
}
.copy p {
  color: var(--muted);
  line-height: 1.8;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.feature {
  padding: 1.2rem;
  border-radius: 14px;
  background: var(--sky);
  font-weight: 700;
  color: var(--navy);
}

/* Booking */
.booking {
  padding: 3rem 0 5rem;
  background: #f5fafb;
}
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: start;
}
.panel {
  min-width: 0;
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
label {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
}
input,
select,
textarea {
  max-width: 100%;
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid #c9dce2;
  border-radius: 12px;
  font: inherit;
  background: white;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.date-help {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.35rem;
}
.map-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(#bcebf1 0 18%, #f1ddb8 18% 100%);
  border-radius: 20px;
  padding: 1rem;
}
.sea {
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1.35rem;
}
.seat-map {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.55rem;
}
.korb {
  min-width: 0;
  aspect-ratio: 1/1.05;
  border: 0;
  border-radius: 11px;
  padding: 0.35rem 0.15rem;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 10px rgba(8, 59, 92, 0.14);
  font-weight: 900;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.15s;
}
.korb-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.korb-number {
  font-size: 0.72rem;
  margin-top: 0.2rem;
}
.korb:hover {
  transform: translateY(-2px);
}
.korb.selected {
  background: var(--coral);
  color: #fff;
}
.korb.booked {
  background: #b7c1c5;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.8;
}
.row-break {
  grid-column: 1/-1;
  height: 0.2rem;
}
.legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-right: 0.4rem;
  vertical-align: -2px;
}
.summary {
  position: sticky;
  top: 105px;
}
.summary h2 {
  font-family: Georgia, serif;
  color: var(--navy);
  margin-top: 0;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e4edef;
}
.summary-line strong {
  text-align: right;
}
.total {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}
.notice {
  padding: 1rem;
  border-radius: 14px;
  background: var(--sand);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 1rem 0;
}
.success {
  display: none;
  padding: 1rem;
  border-radius: 14px;
  background: #daf4e4;
  color: #17603a;
  font-weight: 700;
  margin-top: 1rem;
}

/* Menu components (kept for compatibility) */
.menu-section {
  padding: 4rem 0;
  background: #f5fafb;
}
.menu-location {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.menu-card h2 {
  font-family: Georgia, serif;
  color: var(--navy);
  margin-top: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e4edef;
}
.menu-item:last-child {
  border-bottom: 0;
}
.menu-item strong {
  color: var(--navy);
}
.menu-item small {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.qr-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  background: var(--sand);
  border-radius: 22px;
  padding: 1.3rem;
}
.qr-card img {
  width: 160px;
  border-radius: 12px;
  background: #fff;
  padding: 0.5rem;
}
.qr-card h3 {
  color: var(--navy);
  margin: 0.2rem 0;
}
.qr-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* Footer */
/* Footer */
footer {
  background: var(--navy);
  color: #d7eef3;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid a {
  display: block;
  margin: 0.65rem 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

/* Tablet ve mobilde diğer bölümler */
@media (max-width: 850px) {
  .choice-grid,
  .split,
  .booking-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Sadece mobil footer */
@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px 16px;
    align-items: start;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid h3 {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .footer-grid a {
    margin: 0.55rem 0;
  }

  .copyright {
    margin-top: 28px;
  }
}

/* Responsive: tablet and mobile */
@media (max-width: 850px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .navlinks {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 4%;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .navlinks.open {
    display: flex;
  }
  .navlinks a {
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }
  .choice-grid,
  .split,
  .booking-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .summary {
    position: static;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 68vh;
  }
  .location-image {
    height: 280px;
  }
  .booking {
    padding-top: 1.5rem;
  }
  .panel {
    padding: 1rem;
    border-radius: 18px;
  }
  .map-wrap {
    padding: 0.65rem;
  }
  .sea {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    margin-bottom: 0.9rem;
  }
  .seat-map {
    gap: 0.25rem;
  }
  .korb {
    border-radius: 6px;
    padding: 0.12rem;
    box-shadow: 0 2px 5px rgba(8, 59, 92, 0.12);
  }
  .korb-icon {
    font-size: 0.7rem;
  }
  .korb-number {
    font-size: 0.48rem;
    margin-top: 0.1rem;
  }
  .legend {
    gap: 0.7rem;
    font-size: 0.78rem;
  }
  .summary-line {
    font-size: 0.92rem;
  }
  .qr-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-card img {
    margin: auto;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .container {
    width: min(94%, 1160px);
  }
  .brand svg {
    width: 46px;
    height: 46px;
  }
  .brand {
    font-size: 0.9rem;
  }
  .nav {
    min-height: 68px;
  }
  .navlinks {
    top: 68px;
  }
  .page-hero {
    padding: 3.6rem 0 3rem;
  }
  .seat-map {
    gap: 0.18rem;
  }
  .korb-icon {
    font-size: 0.62rem;
  }
  .korb-number {
    font-size: 0.44rem;
  }
  .map-wrap {
    padding: 0.5rem;
  }
  .panel {
    padding: 0.8rem;
  }
  .location-body {
    padding: 1.35rem;
  }
}

.booking-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1050px) {
  .booking-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  .booking-filters {
    grid-template-columns: 1fr;
  }
}

/* Deutscher, geräteunabhängiger Datumsbereich */
.date-range-field {
  min-width: 0;
}
.field-label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.duration-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #c9dce2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.duration-btn {
  border: 0;
  background: #fff;
  color: var(--navy);
  padding: 0.9rem 0.55rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.duration-btn + .duration-btn {
  border-left: 1px solid #c9dce2;
}
.duration-btn.active {
  background: var(--navy);
  color: #fff;
}
.is-hidden {
  display: none !important;
}
#startDateDisplay,
#endDateDisplay {
  cursor: pointer;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23083b5c' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  padding-right: 3rem;
}
.calendar-popover {
  position: relative;
  z-index: 20;
  width: min(820px, 100%);
  margin: -0.6rem 0 1.4rem;
  background: #fff;
  border: 1px solid #c9dce2;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(8, 59, 92, 0.18);
  padding: 1rem;
}
.calendar-popover[hidden] {
  display: none;
}
.cal-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.cal-nav {
  border: 0;
  background: var(--sky);
  color: var(--navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}
.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--muted);
  padding: 0.3rem 0;
}
.cal-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.cal-day:hover {
  background: var(--sky);
}
.cal-day:disabled {
  color: #b7c1c5;
  cursor: not-allowed;
}
.cal-day.in-range {
  background: #dff4f7;
  border-radius: 0;
}
.cal-day.range-edge {
  background: var(--coral);
  color: #fff;
  border-radius: 9px;
}
.cal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e4edef;
  color: var(--muted);
  font-size: 0.8rem;
}
.cal-close {
  border: 0;
  background: none;
  color: #087ea4;
  font-weight: 900;
  cursor: pointer;
}
.pdf-menu-btn {
  margin-left: 0.55rem;
}
.hero-actions .pdf-menu-btn {
  margin-left: 0;
}
@media (max-width: 850px) {
  .calendar-popover {
    width: 100%;
    margin-top: -0.5rem;
  }
  .pdf-menu-btn {
    margin: 0.65rem 0 0 0;
    width: 100%;
  }
  .page-hero .pdf-menu-btn {
    width: auto;
    margin-left: 0.4rem;
  }
}
@media (max-width: 520px) {
  .page-hero .pdf-menu-btn {
    width: 100%;
    margin: 0.65rem 0 0;
  }
  .cal-day {
    font-size: 0.88rem;
  }
  .calendar-popover {
    padding: 0.75rem;
  }
  .cal-grid,
  .cal-weekdays {
    gap: 0.12rem;
  }
}

/* Vollständig klickbare Standortkarten */
a.location-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.location-card .btn {
  pointer-events: none;
}
a.location-card:focus-visible {
  outline: 4px solid #087ea4;
  outline-offset: 5px;
}

/* Booking.com-artiger Datumsbereich */
.travel-date-label {
  grid-column: span 2;
}
#dateRangeDisplay {
  cursor: pointer;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23083b5c' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 11h18'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  padding-right: 3rem;
}
.range-cal-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
}
.range-cal-head div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.range-cal-head small {
  color: var(--muted);
  font-weight: 600;
}
.calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.calendar-month h3 {
  text-align: center;
  color: var(--navy);
  margin: 0.2rem 0 1rem;
}
.cal-clear {
  border: 0;
  background: none;
  color: #087ea4;
  font-weight: 900;
  cursor: pointer;
}
.cal-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.cal-foot .cal-close {
  justify-self: end;
}
@media (max-width: 850px) {
  .travel-date-label {
    grid-column: auto;
  }
  .calendar-popover {
    position: fixed;
    z-index: 1000;
    inset: auto 0.5rem 0.5rem 0.5rem;
    width: auto;
    max-height: 88vh;
    overflow: auto;
    margin: 0;
    border-radius: 22px;
  }
  .calendar-months {
    grid-template-columns: 1fr;
  }
  .calendar-months .calendar-month:nth-child(2) {
    display: none;
  }
  .cal-foot {
    grid-template-columns: 1fr 1fr;
  }
  .cal-foot span {
    display: none;
  }
  .cal-day {
    min-height: 42px;
  }
  .range-cal-head {
    position: sticky;
    top: -1.2rem;
    background: #fff;
    padding-top: 1rem;
    z-index: 2;
  }
}

@media (max-width: 850px) {
  body {
    padding-top: 108px;
  }

  header {
    top: 40px;
  }

  .brand img {
    height: 54px;
    max-width: 180px;
  }
}

@media (max-width: 420px) {
  body {
    padding-top: 101px;
  }

  header {
    top: 39px;
  }

  .brand img {
    height: 54px;
    width: auto;
  }

  .nav {
    min-height: 76px;
  }
}

/* Desktop navigation hover */
@media (min-width: 851px) {
  .navlinks a:not(.btn) {
    position: relative;
    color: #083b5c;
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .navlinks a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #ef7d57;
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }

  .navlinks a:not(.btn):hover {
    color: #ef7d57;
    transform: translateY(-2px);
  }

  .navlinks a:not(.btn):hover::after {
    width: 100%;
  }
}

/* Active navigation item */

.navlinks a.active:not(.btn) {
  color: #ef7d57;
}

.navlinks a.active:not(.btn)::after {
  width: 100%;
}

.navlinks .btn.active {
  box-shadow:
    0 0 0 3px rgba(239, 125, 87, 0.2),
    0 10px 24px rgba(8, 126, 164, 0.2);
}

@media (max-width: 850px) {
  .navlinks a.active:not(.btn) {
    background: transparent;
    color: var(--coral);
    font-weight: 800;
  }
}

/* Mobil üst alan düzeltmesi */
@media (max-width: 850px) {
  /* Mavi üst bar daha ince */
  .topbar {
    padding: 0.28rem 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .topbar .container {
    gap: 0.2rem;
  }

  /* Navigasyon içeriğini ortala */
  .nav {
    min-height: 82px;
    padding: 8px 0;
    align-items: center;
  }

  /* Logo biraz büyüsün ve ortalansın */
  .brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand img {
    width: 165px;
    height: auto;
    max-width: 48vw;
    object-fit: contain;
  }

  /* Hamburger ortalansın ve biraz büyüsün */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--navy);
  }

  /* Sabit header yüksekliğine göre konum */
  header {
    top: 54px;
  }

  body {
    padding-top: 136px;
  }

  .navlinks {
    top: 82px;
  }
}

@media (max-width: 420px) {
  .topbar {
    font-size: 0.72rem;
    padding: 0.22rem 0;
  }

  .nav {
    min-height: 78px;
  }

  .brand img {
    width: 155px;
    max-width: 50vw;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.75rem;
  }

  header {
    top: 50px;
  }

  body {
    padding-top: 128px;
  }

  .navlinks {
    top: 78px;
  }
}

/* Booking-Schrittablauf: Strandkorbplan bis zur Uhrzeitauswahl sperren */
.seat-map.is-locked {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.25);
}

/* Strandkorb planı kilit durumu */
.seat-area {
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.seat-area.is-locked {
  opacity: 0.45;
  filter: grayscale(0.25);
  pointer-events: none;
}

.seat-gate {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--sand);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.seat-gate.is-hidden {
  display: none;
}

/* =========================
   MOBILE SEAT MAP NAVIGATION
========================= */

.seat-page-controls {
  display: none;
}

@media (max-width: 850px) {
  .seat-page-controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .seat-page-button {
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    border: 0;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

  .seat-page-button:last-child {
    justify-self: end;
  }

  .seat-page-button:disabled {
    background: #b7c1c5;
    cursor: not-allowed;
    opacity: 0.65;
  }

  .seat-page-status {
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
  }

  .seat-map {
    gap: 0.32rem;
  }

  .korb {
    min-height: 44px;
  }

  .korb-number {
    font-size: 0.64rem;
  }
}

.korb-empty {
  display: block;
  min-height: 52px;
  visibility: hidden;
}

/* Sadece Startseite */
body.home-page .topbar {
  display: none;
}

body.home-page header {
  top: 0;
}

body.home-page {
  padding-top: 0 !important;
}

body.home-page main {
  padding-top: 78px !important;
  margin-top: 0 !important;
}

body.home-page .hero {
  margin-top: 0 !important;
}

/* ==================================================
   COMPACT BOOKING PROCESS
================================================== */

.booking-process {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 88px) 0;
  background:
    radial-gradient(
      circle at 50% 55%,
      rgba(239, 125, 87, 0.11),
      transparent 42%
    ),
    linear-gradient(180deg, #fffaf6 0%, #f6f0e9 100%);
}

.booking-process__heading {
  position: relative;
  z-index: 5;
  width: min(90%, 720px);
  margin: 0 auto 30px;
  text-align: center;
}

.booking-process__eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-process__heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.booking-process__heading p {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(8, 59, 92, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.process-swiper {
  width: 100%;
  min-width: 0;
}

.process-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.process-slide {
  position: relative;
  min-width: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
}

.process-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  background: #d9d4cd;
  box-shadow: 0 15px 38px rgba(8, 59, 92, 0.14);
  transition:
    box-shadow 0.7s ease,
    border-color 0.7s ease;
}

.process-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.8s ease;
}

.process-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 38, 61, 0.02) 0%,
    rgba(5, 38, 61, 0.12) 48%,
    rgba(5, 38, 61, 0.9) 100%
  );
}

.process-card__number {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(8, 59, 92, 0.48);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.process-card__content {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  color: #fff;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.process-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.16);
}

.process-card__content h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.12rem, 1.6vw, 1.55rem);
  line-height: 1.1;
}

.process-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.42;
}

/* Desktop ve laptop: kartlar sabit, yalnızca aktif kart büyür. */
@media (min-width: 768px) {
  .process-swiper {
    overflow: visible;
    padding: 34px 2.2% 52px;
  }

  .process-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: clamp(8px, 1.15vw, 18px);
    width: 100% !important;
    transform: none !important;
  }

  .process-slide {
    width: auto !important;
    height: clamp(300px, 31vw, 390px);
    opacity: 0.72;
    transform: scale(0.88);
    filter: saturate(0.86);
  }

  .process-slide.is-active {
    z-index: 10;
    opacity: 1;
    transform: scale(1.07);
    filter: none;
  }

  .process-slide.is-active .process-card {
    border-color: #fff;
    box-shadow:
      0 28px 65px rgba(8, 59, 92, 0.28),
      0 0 0 7px rgba(239, 125, 87, 0.1);
  }

  .process-slide.is-active .process-card img {
    transform: scale(1);
  }

  .process-slide.is-active .process-card__content {
    transform: translateY(-4px);
  }

  .process-slide.is-active .process-card__icon {
    animation: process-icon-pulse 2.2s ease-in-out infinite;
  }
}

/* Telefon: gerçek Swiper, sağdan sola ve kesintisiz 1→2→3→4→5→1. */
@media (max-width: 767px) {
  .booking-process {
    padding: 40px 0 30px;
  }

  .booking-process__heading {
    width: min(90%, 430px);
    margin-bottom: 8px;
  }

  .booking-process__heading h2 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .booking-process__heading p {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .process-swiper {
    overflow: hidden;
    padding: 24px 0 40px;
  }

  .process-swiper .swiper-wrapper {
    display: flex !important;
    align-items: center;
    width: auto !important;
  }

  .process-slide {
    flex: 0 0 auto;
    width: min(76vw, 292px) !important;
    height: min(112vw, 430px);
    opacity: 0.5;
    transform: scale(0.84);
    filter: saturate(0.75);
  }

  .process-slide.swiper-slide-prev,
  .process-slide.swiper-slide-next {
    opacity: 0.72;
    transform: scale(0.9);
  }

  .process-slide.swiper-slide-active {
    z-index: 10;
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .process-slide.swiper-slide-active .process-card {
    border-color: #fff;
    box-shadow:
      0 24px 55px rgba(8, 59, 92, 0.27),
      0 0 0 7px rgba(239, 125, 87, 0.1);
  }

  .process-slide.swiper-slide-active .process-card img {
    transform: scale(1);
  }

  .process-slide.swiper-slide-active .process-card__icon {
    animation: process-icon-pulse 2.2s ease-in-out infinite;
  }

  .process-card {
    border-radius: 24px;
  }

  .process-card__content {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .process-card__content h3 {
    font-size: 1.42rem;
  }

  .process-card__content p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 390px) {
  .process-slide {
    width: min(78vw, 270px) !important;
    height: min(116vw, 405px);
  }
}

@keyframes process-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-slide,
  .process-card,
  .process-card img,
  .process-card__content {
    transition-duration: 0.01ms;
  }

  .process-card__icon {
    animation: none !important;
  }
}

/* ==================================================
   PREIS AUF STARSEITE FÜR STRANDKORB
================================================== */

.hero-price-badge {
  position: absolute;

  right: clamp(36px, 5vw, 90px);
  top: 72%;
  transform: translateY(-50%);

  width: clamp(165px, 15vw, 225px);
  aspect-ratio: 1;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;
  text-align: center;
  text-decoration: none;

  color: #fff;
  background: rgba(7, 63, 99, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);

  z-index: 8;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-price-badge:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero-price {
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.9;
  font-weight: 700;
}

.hero-price-label {
  margin-top: 10px;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-price-note {
  margin-top: 5px;
  font-size: clamp(13px, 1.1vw, 17px);
}

.hero-price-action {
  margin-top: 11px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .hero {
    position: relative;
    overflow: visible;
    margin-bottom: 85px;
  }

  .hero-price-badge {
    position: absolute;

    left: auto;
    right: 18px;

    top: auto;
    bottom: -72px;

    transform: none;

    width: 140px;
    height: 140px;
    padding: 14px;

    border-radius: 50%;

    background: rgba(7, 63, 99, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.25),
      0 0 0 8px rgba(255, 255, 255, 0.35);

    isolation: isolate;
  }

  .hero-price-badge::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(54, 116, 150, 0.18) 0%,
      rgba(54, 116, 150, 0.08) 45%,
      transparent 75%
    );
    z-index: -1;
  }

  .hero-price-badge:hover {
    transform: none;
  }

  .hero-price {
    font-size: 40px;
  }

  .hero-price-label {
    margin-top: 6px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .hero-price-note {
    margin-top: 4px;
    font-size: 11px;
  }

  .hero-price-action {
    margin-top: 7px;
    font-size: 10px;
  }
}

.hero-price-badge {
  opacity: 0;
  animation: showPriceBadge 0.7s ease 1.1s forwards;
}

@keyframes showPriceBadge {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 768px) {
  .hero-price-badge {
    animation-name: showPriceBadgeMobile;
  }

  @keyframes showPriceBadgeMobile {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.88);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}
