:root {
  --dark: #1b2430;
  --sage: #8faf9a;
  --sage-dark: #7a9c86;
  --text: #2b2f33;
  --muted: #5c6570;
  --bg-alt: #f4f5f6;
  --border: #e2e4e6;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 0;
}

.main-nav a.active {
  border-bottom: 2px solid #fff;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  z-index: 20;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  text-transform: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown a:hover { background: rgba(255,255,255,0.08); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.hero-image {
  flex: 1 1 50%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1 1 50%;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
}

.hero-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  margin: 0 0 12px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--sage);
  border: none;
  margin: 16px 0 24px;
}

.hero-content p {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.1rem;
  max-width: 460px;
}

.price {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover { background: #000; }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 12px 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-sage {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  padding: 16px 32px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-sage:hover { background: var(--sage-dark); }

/* Section titles */
.section {
  padding: 72px 24px;
}

.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-wrap .divider { margin-left: auto; margin-right: auto; }

/* A propos grid */
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.about-item {
  text-align: center;
}

.about-item .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.about-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.about-item p {
  margin: 0;
  color: var(--muted);
}

/* Domaine cards */
.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.card h3 {
  margin: 20px 0 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

/* Contact */
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info p {
  margin: 0 0 16px;
}

.contact-info .addr {
  font-weight: 600;
}

form.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Map */
.map {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(20%);
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.site-footer .footer-title {
  font-weight: 600;
  margin: 0 0 4px;
}

.site-footer .footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sub-page hero */
.page-hero {
  height: 50vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.page-hero-overlay h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.page-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  white-space: pre-line;
  color: var(--muted);
}

/* Photo grid / gallery */
.photo-grid {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-grid a:hover img {
  transform: scale(1.05);
}

.room-block {
  max-width: var(--max-width);
  margin: 0 auto 56px;
}

.room-block h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--sage);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

/* Activity / loisirs cards */
.activity-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.activity-item {
  text-align: center;
}

.activity-item img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
}

.activity-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.activity-item p {
  color: var(--muted);
  margin: 0 0 16px;
}

.link-btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.link-btn:hover { background: #000; }

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .has-dropdown .dropdown { position: static; display: none; box-shadow: none; }
  .has-dropdown.open .dropdown { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-image { min-height: 280px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}
