/**
 * Dinkidoodles — Minimalistic SaaS Theme
 * Light backgrounds, clean typography, 8px border-radius
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --primary: #0f766e;
  --primary-hover: #115e59;
  --primary-light: #f0fdfa;
  --primary-border: #ccfbf1;
  --primary-glow: rgba(15, 118, 110, 0.08);
  --accent: #d97706;

  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;

  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-light: #ffffff;
  --border-line: #e2e8f0;
  --border-subtle: #f1f5f9;

  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-full: 8px;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1200px;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Top Announcement Banner */
.top-notice-bar {
  background: var(--bg-subtle);
  color: var(--text-body);
  border-bottom: 1px solid var(--border-line);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  transition: all 0.2s ease;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-book-cta {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-xs);
}

.btn-book-cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Full Screen Immersive Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 61px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  padding: 80px 20px;
}

.hero-backdrop-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 45, 45, 0.65) 50%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 118, 110, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 251, 241, 0.35);
  color: #ccfbf1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #2dd4bf;
  border-radius: 50%;
  box-shadow: 0 0 8px #2dd4bf;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-title span {
  color: #5eead4;
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 34px;
  max-width: 660px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.45);
  border: 1px solid var(--primary);
}

.btn-primary-hero:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.6);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.hero-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 10px 24px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #f1f5f9;
}

.hero-feature-item svg {
  color: #2dd4bf;
  flex-shrink: 0;
}

/* Sections Global */
.section {
  padding: 68px 20px;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Specs & Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: all 0.15s ease;
}

.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.amenity-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.amenity-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing Rates Cards */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.rate-card {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.rate-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.rate-card.featured {
  border: 1.5px solid var(--primary);
  box-shadow: 0 10px 25px -4px rgba(15, 118, 110, 0.12);
  transform: translateY(-3px);
  z-index: 2;
}

.rate-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.rate-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.rate-card-hours {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.rate-card-price {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.rate-card-price span {
  font-size: 13.5px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

.rate-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.rate-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 11px;
}

.rate-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-card-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-line);
  color: var(--text-main);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.rate-card.featured .btn-card-select {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-card-select:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
}

/* Schedule Cards */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.schedule-card {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-xs);
  transition: all 0.15s ease;
}

.schedule-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.schedule-day-badge {
  display: inline-block;
  background: var(--bg-subtle);
  color: var(--text-body);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid var(--border-line);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.schedule-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.schedule-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.schedule-fee {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-align: right;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  border: 1px solid var(--border-line);
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 13.5px;
  font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-backdrop.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #fff;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  color: #f1f5f9;
  font-size: 13.5px;
  margin-top: 12px;
  text-align: center;
}

/* Booking Request Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  border: 1px solid var(--border-line);
  padding: 28px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-main);
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit-booking {
  width: 100%;
  padding: 11px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: var(--shadow-xs);
  transition: background 0.15s ease;
}

.btn-submit-booking:hover {
  background: var(--primary-hover);
}

/* Location Map Section */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.location-info-card {
  background: #ffffff;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-xs);
}

.map-embed-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid var(--border-line);
}

/* Minimalist SaaS Footer */
.site-footer {
  background: var(--bg-subtle);
  color: var(--text-body);
  padding: 56px 20px 28px;
  border-top: 1px solid var(--border-line);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-line);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer-admin-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-admin-link:hover {
  color: var(--primary);
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10001;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsiveness */
@media (max-width: 960px) {
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: 44px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: 1fr; gap: 24px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .location-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .mobile-menu-toggle { display: flex; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 24px; }
  .hero-features-bar { border-radius: 12px; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
