:root {
  --primary: #1e5f4a;
  --primary-dark: #143f31;
  --accent: #d98e3e;
  --text: #2b2b2b;
  --bg-alt: #f4f6f4;
  --border: #dfe3df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* Header / Nav */
.site-header {
  background: var(--primary-dark);
  color: white;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
}

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

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  font-size: 1.2rem;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    order: 10;
    padding-top: 6px;
  }

  .main-nav.open {
    display: flex;
  }
}

.book-now-btn {
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

.book-now-btn:hover {
  background: #c37a2e;
}

.book-now-btn-hero {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.05rem;
  padding: 12px 28px;
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(20, 63, 49, 0.85), rgba(20, 63, 49, 0.85)), url("../images/gallery/exterior-aerial-winter.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 90px 20px 70px;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
}

.hero .subtitle {
  margin-top: 8px;
  font-size: 1.3rem;
  opacity: 0.9;
}

.hero .tagline {
  margin-top: 18px;
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quick-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
}

.quick-facts li {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
}

.price-teaser {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-teaser a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.price-teaser a:hover {
  color: white;
}

.placeholder-note {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Sections */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section.alt {
  background: var(--bg-alt);
  max-width: 100%;
}

.section.alt > .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-section {
  max-width: 100%;
  background: linear-gradient(rgba(20, 63, 49, 0.85), rgba(20, 63, 49, 0.85)), url("../images/gallery/exterior-aerial-winter.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.welcome-section > .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero,
  .welcome-section {
    background-attachment: scroll;
  }
}

.section.welcome-section h2 {
  color: white;
  border-bottom-color: var(--accent);
}

.section h2 {
  color: var(--primary-dark);
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.season-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.season-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}

.season-card.winter {
  border-top: 4px solid #3b7fb5;
}

.season-card.winter::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url("../images/gallery/balcony-mountain-view.jpg");
}

.season-card.summer {
  border-top: 4px solid #6fae4a;
}

.season-card.summer::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url("../images/gallery/terrace-summer-view.jpg");
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.activity-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.activity-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.4rem;
  position: absolute;
  left: 4px;
  top: 2px;
}

.distance-box {
  margin-top: 20px;
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 4px;
}

.distance-box h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
}

.book-now-link {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 6px;
}

.book-now-link:hover {
  background: #c37a2e;
}

.property-reference {
  color: #666;
  font-size: 0.9rem;
  margin-top: -8px;
}

.source-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

.placeholder-inline {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #a05a00;
  background: #fff4e0;
  border: 1px dashed #e0b060;
  border-radius: 4px;
  padding: 8px 12px;
}

.map-address {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.faq-list {
  margin-top: 20px;
  max-width: 750px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 20px;
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 14px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::before {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 16px 20px;
  color: var(--text);
}

.reviews-rating {
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-quote {
  font-style: italic;
  color: var(--text);
  margin: 0 0 12px;
}

.review-author {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.info-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 10px 14px;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.activity-list a {
  color: var(--primary-dark);
  font-weight: 600;
}

.activity-list a:hover {
  color: var(--primary);
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
}

.info-card p {
  margin: 0;
}

.page-winter .info-card {
  border-left: 4px solid #3b7fb5;
}

.page-summer .info-card {
  border-left: 4px solid #6fae4a;
}

.page-tips .info-card {
  border-left: 4px solid var(--accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: block;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.lightbox-caption {
  color: white;
  margin-top: 14px;
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-grid figcaption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.gallery-empty {
  padding: 30px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: #666;
}

/* Calendar */
.vfy-calendar-embed {
  margin-top: 20px;
  max-width: 600px;
}

.book-links {
  margin-top: 24px;
  max-width: 600px;
}

.book-links h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.calendar-widget {
  margin-top: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  max-width: 480px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar-header button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}

.calendar-header button:hover {
  background: var(--primary-dark);
}

.calendar-header .month-label {
  font-weight: 700;
  color: var(--primary-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-grid .weekday {
  font-weight: 600;
  font-size: 0.8rem;
  color: #777;
  padding-bottom: 6px;
}

.calendar-grid .day {
  padding: 8px 0;
  border-radius: 4px;
  font-size: 0.9rem;
}

.calendar-grid .day.free {
  background: #e6f4ea;
  color: #1e5f2f;
}

.calendar-grid .day.booked {
  background: #f8e3e3;
  color: #8a2e2e;
  text-decoration: line-through;
}

.calendar-grid .day.past {
  color: #bbb;
}

.calendar-grid .day.empty {
  visibility: hidden;
}

.calendar-legend {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 0.85rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.legend-dot.free { background: #e6f4ea; border: 1px solid #1e5f2f; }
.legend-dot.booked { background: #f8e3e3; border: 1px solid #8a2e2e; }

.calendar-status {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #777;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 24px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.85rem;
}

.site-footer .ai-notice {
  opacity: 0.75;
  margin-top: 6px;
}

.footer-contact {
  margin-top: 10px;
  opacity: 0.9;
}

.footer-contact a {
  color: white;
  font-weight: 600;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 50;
  transition: transform 0.15s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}
