﻿   :root {
      --bg-main: #fdf7f2;
      --bg-accent: #f3e1d3;
      --bg-card: #ffffff;
      --color-primary: #3f2d25;
      --color-secondary: #7a493e;
      --color-text: #211915;
      --color-muted: #4f433c;
      --border-soft: #e3d2c5;
      --accent-soft: #d9bfa8;
      --font-main: "Georgia", "Times New Roman", serif;
      --font-hand: "Segoe Script", "Lucida Handwriting", cursive;
    }
	.map-placeholder img {
	  max-width: 100%;
	  height: 150;
	  display: block;
	}
    * { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  transform: none !important;
  perspective: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  will-change: auto !important;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--color-text);
  line-height: 1.6;
    }

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("./images/logo.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 180px auto;
  opacity: 0.50;
}

body > *:not(#viewer) {
  position: relative;
  z-index: 1;
}

    a { color: var(--color-secondary); text-decoration: none; }
    a:hover { text-decoration: underline; }

    header {
      background: linear-gradient(135deg, #f3e1d3, #fdf7f2);
      border-bottom: 1px solid var(--border-soft);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.8rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: var(--font-hand);
      font-size: 1.4rem;
      color: var(--color-primary);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1rem;
      font-size: 0.95rem;
    }

    nav a {
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      transition: background 0.2s, color 0.2s;
    }

    nav a:hover {
      background: var(--bg-accent);
      color: var(--color-primary);
    }

    .hero {
      max-width: 1100px;
      margin: 1.5rem auto 2rem;
      padding: 1.5rem;
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
      gap: 1.5rem;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 2.2rem;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }

    .hero-text h2 {
      font-size: 1.2rem;
      color: var(--color-muted);
      margin-bottom: 1rem;
      font-family: var(--font-hand);
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .tag {
      font-size: 0.8rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: var(--bg-accent);
      color: var(--color-primary);
      border: 1px solid var(--border-soft);
    }

    .btn {
      display: inline-block;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: 1px solid var(--color-secondary);
      background: var(--color-secondary);
      color: #fff;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }

    .btn-outline {
      background: transparent;
      color: var(--color-secondary);
    }

    .btn:hover { transform: translateY(-1px); background: #c57a6b; }
    .btn-outline:hover { background: var(--bg-accent); }

    .hero-image {
      background: var(--bg-accent);
      border-radius: 16px;
      padding: 1rem;
      border: 1px solid var(--border-soft);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .photo {
      background: #e8d5c7;
      border-radius: 12px;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 0.5rem;
    }

    main {
      max-width: 1100px;
      margin: 0 auto 3rem;
      padding: 0 1.5rem;
    }

    section {
      margin-bottom: 2.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px dashed var(--border-soft);
    }

    section:last-of-type { border-bottom: none; }

    section h2 {
      font-size: 1.6rem;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }

    .section-intro {
      margin-bottom: 1rem;
      color: var(--color-muted);
      font-size: 0.95rem;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    .card {
      background: var(--bg-card);
      border-radius: 12px;
      border: 1px solid var(--border-soft);
      padding: 1rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    }

    .list-soft {
      list-style: none;
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }

    .list-soft li::before {
      content: "• ";
      color: var(--color-secondary);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.8rem;
      margin-top: 1rem;
    }

    .gallery-item {
      background: #f0dfcf;
      border-radius: 10px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--color-muted);
      text-align: center;
      padding: 0.4rem;
    }

    .faq-item { margin-top: 0.8rem; }
    .faq-item h3 { font-size: 1rem; }
    .faq-item p { font-size: 0.9rem; }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.35fr);
      gap: 1.75rem;
      margin-top: 1rem;
      align-items: start;
    }

    .contact-panel {
      display: grid;
      gap: 1rem;
    }

    .contact-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,242,235,0.96));
      border: 1px solid var(--border-soft);
      border-radius: 18px;
      padding: 1.25rem;
      box-shadow: 0 12px 30px rgba(123, 75, 58, 0.08);
    }

    .contact-details h3,
    .contact-form-card h3 {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
    }

    .contact-detail-list {
      display: grid;
      gap: 0.75rem;
    }

    .contact-detail-item {
      display: grid;
      gap: 0.15rem;
    }

    .contact-detail-item strong {
      color: var(--color-primary);
    }

    .contact-hint {
      margin-top: 1rem;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      background: rgba(243, 225, 211, 0.65);
      color: var(--color-text);
      font-size: 0.92rem;
    }

    .booking-block {
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px dashed var(--border-soft);
    }

    .booking-block h3 {
      margin-bottom: 0.45rem;
    }

    .contact-form-card {
      position: relative;
      overflow: hidden;
    }

    .contact-form-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--color-secondary), #d8a788);
    }

    .contact-form-header {
      margin-bottom: 1rem;
    }

    .contact-badge {
      display: inline-block;
      margin-bottom: 0.7rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(217, 191, 168, 0.35);
      border: 1px solid rgba(179, 107, 94, 0.25);
      color: var(--color-primary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .contact-form-note {
      color: var(--color-muted);
      font-size: 0.95rem;
    }

    .contact-form {
      display: grid;
      gap: 1rem;
    }

    .form-row {
      display: grid;
      gap: 1rem;
    }

    .form-row-split {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-field {
      display: grid;
      gap: 0.45rem;
    }

    .form-field label {
      color: var(--color-primary);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      background: rgba(255,255,255,0.95);
      color: var(--color-text);
      padding: 0.85rem 0.95rem;
      font: inherit;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #a58b7f;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: var(--color-secondary);
      box-shadow: 0 0 0 4px rgba(179, 107, 94, 0.12);
      background: #fff;
    }

    .form-field textarea {
      min-height: 180px;
      resize: vertical;
    }

    .contact-form-actions {
      display: grid;
      gap: 0.65rem;
    }

    .contact-submit {
      justify-self: start;
      min-width: 180px;
    }

    .contact-submit:disabled {
      cursor: wait;
      opacity: 0.75;
    }

    .contact-status {
      min-height: 1.4em;
      font-size: 0.92rem;
    }

    .contact-status.is-pending {
      color: var(--color-muted);
    }

    .contact-status.is-success {
      color: #2f7d4a;
    }

    .contact-status.is-error {
      color: #a13d34;
    }

    .contact-honeypot-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
    }

    .map-placeholder {
      margin-top: 0;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.2rem;
    }

    .map-link-wrap {
      margin: 0;
    }

    .map-placeholder a {
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1rem;
    }

    footer {
      border-top: 1px solid var(--border-soft);
      background: #f6eee7;
      padding: 1rem 1.5rem;
      font-size: 0.8rem;
      color: var(--color-muted);
      position: relative;
      z-index: 10;
    }

    @media (max-width: 800px) {
      .hero { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .header-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
      nav ul { flex-wrap: wrap; }
      .form-row-split { grid-template-columns: 1fr; }
    }

#gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#gallery img {
  width: 120px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
}

#gallery img:hover {
  transform: scale(1.05);
}

#viewer {
  position: fixed !important;
  inset: 0 ;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000 !important;
}

#viewer.hidden {
  display: none;
}

 #viewer img {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 90%;
}
#closeViewer {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  z-index: 10001 !important;
}

#closeViewer:hover {
  background: rgba(0, 0, 0, 0.9);
}




