﻿:root {
  --bg: #f8fbff;
  --ink: #0b1b3a;
  --muted: #3b4b6b;
  --brand: #1d4ed8;
  --brand-dark: #1e40af;
  --accent: #0ea5e9;
  --surface: #ffffff;
  --soft: #e7f0ff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f1f7ff 0%, #f8fbff 45%, #e8f1ff 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.nav-link {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.5);
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, border 0.2s ease;
}

.ghost:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
}

.ghost.danger {
  border-color: rgba(100, 116, 139, 0.7);
  color: #475569;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin: 16px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.hero-stats strong {
  font-size: 1.4rem;
}

.hero-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.hero-card h3 {
  font-size: 1.2rem;
}

.pill {
  background: var(--soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
}

.hero-card-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-photo-stack {
  display: grid;
  gap: 14px;
}

.hero-photo-main {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-photo-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.showcase-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.showcase-meta {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.showcase-meta h3 {
  font-size: 1.12rem;
}

.highlight {
  background: linear-gradient(120deg, #e9f3ff, #f8fbff);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.price-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  text-align: center;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li::before {
  content: "•";
  color: var(--brand);
  font-weight: 700;
  margin-right: 10px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.form {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  font-family: inherit;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.notice {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 16px;
}

.notice.success {
  background: #e0f2fe;
  color: #0369a1;
}

.notice.error {
  background: #e2e8f0;
  color: #1e293b;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 80px 0 40px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 16px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.about-card,
.contact-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  font-style: italic;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #0b1b3a;
}

.gallery-item .info {
  padding: 16px;
  display: grid;
  gap: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.site-footer {
  padding: 50px 0 30px;
  background: #0b1b3a;
  color: #f8fbff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #f8fbff;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 251, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.admin .site-header {
  position: static;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.admin-cta {
  margin-top: 40px;
}

.table-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.table-controls input,
.table-controls select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.table-wrap {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.table-title {
  font-weight: 600;
}

.table-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status.pending {
  background: #e0f2fe;
  color: #075985;
}

.status.confirmed {
  background: #dbeafe;
  color: #1e3a8a;
}

.status.cancelled {
  background: #f1f5f9;
  color: #475569;
}

.inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
  }
  .hero-photo-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: 12px;
  }
}
