@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v21-latin_latin-ext-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v21-latin_latin-ext-500.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v21-latin_latin-ext-500italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v21-latin_latin-ext-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2");
}

:root {
  --accent: #3d5a4c;
  --accent-dark: #2c4236;
  --text: #2f2f2f;
  --muted: #7a7a72;
  --bg: #faf8f4;
  --line: #e6e1d7;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
h2 { font-size: 1.8rem; margin-top: 2.5rem; }
a { color: var(--accent); }
img { max-width: 100%; }

/* Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; text-decoration: none; color: var(--text); }
.site-header nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 3px;
}
.site-header nav a:hover, .site-header nav a.active { border-bottom: 2px solid var(--accent); }

.site-header nav a.lang { border: 1px solid var(--line); padding: 0.2rem 0.5rem; margin-left: 1rem; font-size: 0.8rem; }

/* Mobile menu (no JavaScript) */
.menu-toggle { display: none; }
.menu-button { display: none; font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  min-height: 70vh;
  background-color: #b9c6bd;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero p { font-size: 1.2rem; max-width: 34rem; margin: 0.8rem 0 1.6rem; }
.hero-small { min-height: 40vh; }

.button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #fff;
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.button:hover { background: var(--accent); color: #fff; }

/* Content */
.page-title { text-align: center; font-size: 2.8rem; margin: 3rem 1rem 0; }
.content { max-width: 760px; margin: 2.5rem auto; padding: 0 1.5rem; }
.content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.content th, .content td { padding: 0.7rem; border-bottom: 1px solid var(--line); text-align: left; }
.big-link { text-align: center; font-size: 1.5rem; font-family: var(--serif); }

/* Rooms */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
.room { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.06); transition: transform 0.2s; }
.room:hover { transform: translateY(-3px); }
.room img { width: 100%; height: 220px; object-fit: cover; background: #d8d4c8; display: block; }
.room-body { padding: 1.3rem; }
.room-body h3 { margin: 0 0 0.2rem; font-size: 1.5rem; }
.capacity { color: var(--muted); font-size: 0.85rem; margin-top: 0; text-transform: uppercase; letter-spacing: 0.05em; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 500; font-size: 1.05rem; }



/* Contact form */
form { margin-top: 2.5rem; }
form label { display: block; margin-top: 1.2rem; font-size: 0.9rem; font-weight: 500; }
form input, form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font: inherit;
  color: var(--text);
}
form input:focus, form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form button {
  margin-top: 1.6rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 2px;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover { background: var(--accent-dark); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }


/* Footer */
.site-footer { text-align: center; padding: 2.5rem 1rem; color: var(--muted); border-top: 1px solid var(--line); font-size: 0.9rem; margin-top: 3rem; }

.site-footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  margin: 0.5rem 0;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 2rem;
  gap: 0.35rem;
  text-decoration: none;
}

.site-footer .social-links a span {
  font-size: 0.8rem;
  line-height: 1.2;
}

.site-footer .social-links img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.site-footer .social-links a:hover img {
  opacity: 1;
}


/* Mobile */
@media (max-width: 800px) {
  .menu-button { display: block; }
  .site-header nav { display: none; width: 100%; flex-direction: column; padding-top: 1rem; }
  .menu-toggle:checked ~ nav { display: flex; }
  .site-header nav a { margin: 0; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
}



