/* ============ Base Tokens ============ */
:root {
  --bg-dark: #020617;
  --bg-darker: #000814;
  --bg-light: #f8fafc;

  --primary: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.16);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --highlight: #facc15;

  --text-main: #020617;
  --text-muted: #6b7280;
  --white: #ffffff;

  --border-soft: rgba(148, 163, 184, 0.35);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);

  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(30, 64, 175, 0.7);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--white);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-full {
  width: 100%;
}

/* Header / Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(2, 6, 23, 0.98));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 0, #38bdf8, #1d4ed8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.75rem;
  opacity: 0.75;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.85);
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #38bdf8, #1d4ed8);
  transition: width 0.18s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: #f9fafb;
}

.main-nav a.active::after {
  width: 100%;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-image:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.92)),
    url("images/rooftop-hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.88));
}

.hero-content {
  position: relative;
  padding-block: 5rem 4rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  max-width: 640px;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.83rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding-block: 5rem;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-main);
}

.section-dark {
  background: radial-gradient(circle at top left, #020617, #020617 50%, #000814);
  color: var(--white);
}

.section-accent {
  background: radial-gradient(circle at top left, #0f172a, #1d4ed8);
  color: #e5e7eb;
}

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

.section-header.align-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.section-dark .section-header p,
.section-accent .section-header p {
  color: rgba(209, 213, 219, 0.9);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Cards */
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.section-light .card {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.card-body {
  padding: 1.3rem 1.4rem 1.4rem;
}

/* Dish cards */
.dish-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.dish-image {
  height: 190px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.dish-tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.45rem;
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-dark .dish-desc {
  color: rgba(209, 213, 219, 0.9);
}

/* Experience */
.experience-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.experience-block h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.experience-block p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.experience-photo {
  position: relative;
  min-height: 260px;
}

.experience-photo-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-image:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.9)),
    url("images/rooftop-hero.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

/* Gallery */
.gallery-item {
  border-radius: var(--radius-lg);
  min-height: 180px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.gallery-item.g1 { background-image: url("images/gallery-1.jpg"); }
gallery-item.g2 { background-image: url("images/gallery-2.jpg"); }
.gallery-item.g3 { background-image: url("images/gallery-3.jpg"); }
.gallery-item.g4 { background-image: url("images/gallery-4.jpg"); }
.gallery-item.g5 { background-image: url("images/gallery-5.jpg"); }
.gallery-item.g6 { background-image: url("images/gallery-6.jpg"); }

/* Events */
.event-card {
  padding: 1.4rem 1.5rem;
}

.event-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.78;
  margin-bottom: 0.35rem;
}

/* Reservation form */
.reservation-container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reservation-container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: flex-start;
  }
}

.reservation-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-top: 0;
}

.reservation-text p {
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.section-light .reservation-text p {
  color: var(--text-main);
}

.reservation-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.9);
}

.section-light .reservation-notes {
  color: var(--text-muted);
}

.reservation-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .form-row:first-of-type {
    grid-template-columns: 1.3fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #0f172a;
}

.form-field input,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.form-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 80px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.form-disclaimer {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Contact & Map */
.contact-container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.social-links a {
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: rgba(226, 232, 240, 0.96);
}

.social-links a:hover {
  background: rgba(15, 23, 42, 0.9);
}

.map-embed {
  min-height: 220px;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.8);
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 1.2rem;
  font-size: 0.78rem;
  opacity: 0.8;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

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

/* Page helper */
.page {
  padding-top: 80px;
}

.page-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

.section-dark .page-intro,
.section-accent .page-intro {
  color: rgba(209, 213, 219, 0.9);
}

/* Responsive */
@media (max-width: 880px) {
  .main-nav { display: none; }
}

@media (max-width: 640px) {
  .hero-content { padding-block: 4rem 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .section { padding-block: 3.5rem; }
  .card { border-radius: var(--radius-md); }
  .reservation-form { padding: 1.3rem; }
}
