:root {
  --bg: #000000;
  --pink: #F3A1D9;
  --pink-2: #E89AD1;
  --muted: #F8F4F8;
  --max-width: 980px;
}

/* Reset */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
}

/* Header / logo */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 12px;
}
.site-logo {
  width: 38%;
  max-width: 360px;
  height: auto;
  display: block;
}

/* Hero / navigation */
.hero {
  text-align: center;
  padding: 8px 12px 28px;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn,
.btn:link,
.btn:visited {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
}
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  background: transparent;
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: rgba(243,161,217,0.06);
}
.btn-primary {
  background: var(--pink);
  color: #000;
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--pink-2);
}
.btn.active {
  background: var(--pink);
  color: #000;
  border-color: var(--pink);
}

/* Panels */
.panel {
  margin-top: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(243,161,217,0.18);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.panel.hidden { display: none; }
.panel-inner {
  padding: 22px;
}

/* Timetable */
.timetable-grid {
  display: grid;
  gap: 18px;
  margin: 12px 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.timetable-day {
  background: rgba(255,255,255,0.02);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(243,161,217,0.10);
}
.timetable-day h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--pink);
}
.timetable-day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timetable-note {
  color: #d9c7d4;
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Contact & Map */
.contact-wrapper {
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.contact-card {
  background: #121212;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(243,161,217,0.12);
}
.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
}
.contact-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-card a {
  color: var(--pink);
  text-decoration: underline;
}

.map-card {
  background: #121212;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(243,161,217,0.12);
}
.map-title {
  margin: 0 0 10px 0;
  color: var(--muted);
}
.map-frame {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  border: none;
}

/* Booking iframe */
.booking-frame-wrap {
  margin-top: 6px;
}
.booking-iframe {
  width: 100%;
  height: 720px;
  border-radius: 8px;
  border: none;
}

/* About section */
.about-us-section {
  margin-top: 26px;
}
.about-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.about-row.reverse { flex-direction: row-reverse; }
.about-text { flex: 1; min-width: 260px; }
.about-image {
  width: 300px;
  max-width: 40%;
}
.about-image.small-thumb { max-width: 40%; }
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.02);
  transition: transform 0.2s ease;
}
.about-image img:hover { transform: scale(1.02); }

/* Footer */
.site-footer {
  margin-top: 28px;
  padding: 18px 12px;
  border-top: 1px solid rgba(255,255,255,0.02);
  text-align: center;
  color: var(--muted);
}

/* Image Modal / Lightbox */
.image-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
  padding: 20px;
}
.image-modal.hidden { display: none; }
.modal-content-img {
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 10px;
  border: 2px solid var(--pink);
  box-shadow: 0 0 25px rgba(243,161,217,0.4);
}
.close-modal {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: var(--pink);
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}
.close-modal:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .about-image { width: 40%; }
  .booking-iframe { height: 520px; }
  .map-frame { height: 240px; }
}
@media (max-width: 700px) {
  .site-logo { width: 54%; max-width: 260px; }
  .cta-row { gap: 8px; }
  .about-row { flex-direction: column; }
  .about-image { width: 100%; max-width: 420px; }
  .booking-iframe { height: 560px; }
}
