:root {
  --primary: #1a73e8;
  --primary-hover: #065fd4;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary); text-decoration: none; }
a:hover { opacity: 0.85; }

/* Navigation */
.nav {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin-right: auto;
}
.nav a { color: rgba(255,255,255,0.9); font-weight: 500; }
.nav a:hover { color: white; opacity: 1; }
.nav a.active { color: white; border-bottom: 2px solid white; padding-bottom: 2px; }

/* Hero */
.hero {
  background: var(--primary);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.1; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
.hero .cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* Features */
.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary); }
.feature-card p { color: var(--text-muted); }

/* Content block */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.content-block h2 { font-size: 2rem; margin-bottom: 1rem; }
.content-block p { color: var(--text-muted); font-size: 1.1rem; }

/* Listing grid */
.listing-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.listing-grid h2 { font-size: 2rem; margin-bottom: 2rem; }
.listing-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.listing-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.contact-form h2 { font-size: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,115,232,0.1); }
.form-group textarea { height: 150px; resize: vertical; }
.submit-btn {
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.submit-btn:hover { background: var(--primary-hover); }

/* Booking / cart placeholders */
.placeholder-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}
.placeholder-section .placeholder-box {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 0.75rem;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: auto;
}
.footer a { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .nav { padding: 0.75rem 1rem; gap: 1rem; flex-wrap: wrap; }
}