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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f3f4f6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: #111827;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
}

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

.nav a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(249, 250, 251, 0.1);
}

/* Hero */

.hero {
  background: #0f172a;
  color: #f9fafb;
  padding: 3rem 0;
}

.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: 1.3fr 1fr;
  }
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem 0;
}

.hero-text p {
  margin: 0 0 1rem 0;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 180px;
  border-radius: 1rem;
  border: 1px dashed rgba(249, 250, 251, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Sections */

.section {
  padding: 3rem 0;
  background: #f3f4f6;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  margin: 0 0 0.75rem 0;
}

.section-intro {
  max-width: 650px;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Grid 3 */

.grid-3 {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.2rem;
}

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

/* Cards */

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* About */

.about {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Forms / Réservation */

.form-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
}

input,
textarea {
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
}

.form-actions {
  grid-column: 1 / -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: #f97316;
  color: #111827;
  border-color: #f97316;
}

.btn.primary:hover {
  background: #ea580c;
}

.btn.outline {
  background: transparent;
  border-color: #e5e7eb;
  color: #f9fafb;
}

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

/* Contact */

.contact {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact {
    grid-template-columns: 1.1fr 1fr;
  }
}

.map-placeholder {
  width: 100%;
  min-height: 200px;
  border-radius: 0.9rem;
  border: 1px dashed #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Footer */

.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 1rem 0;
}

.footer-inner {
  font-size: 0.85rem;
  text-align: center;
}

.muted {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive header */

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    flex-wrap: wrap;
  }
}
