/* Global styles */
*, *::before, *::after {
  box-sizing: border-box;
}


body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  background-color: #DADBBE;
  color: #5b7754;
  line-height: 1.8;
  max-width: 100vw;
  overflow-x: hidden;
}


header {
  background: linear-gradient(90deg, #a8c0a8, #dcd2be);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 0 0rem 0;
}

header p {
  font-style: italic;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}


.container {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #5b7754;
  margin-top: 2.5rem;
  font-size: 2rem;
}

.about-section h2 {
  margin-top: 0;
}

.boxed h3 {
  color: #5b7754;
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.boxed h3:first-of-type {
  margin-top: 1.25rem;
}

.boxed {
  background-color: #f6f4ee;           
  border-left: 6px solid #a8c0a8;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;                 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}


.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: #f7f3e9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(57, 77, 56, 0.12);
}

.service-table th {
  background: #e3e7e0;
}

.service-table th,
.service-table td {

  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(195, 201, 187, 0.32);
  text-align: left;
  vertical-align: middle;
  font-size: 1rem;
  color: #314633;
}

.service-table thead th {
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #314a32;
}

.service-table thead th:nth-child(2),
.service-table thead th:nth-child(3) {
  text-align: center;
}

.service-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-table tbody tr:nth-child(even) {
  background: rgba(236, 240, 232, 0.5);
}

.service-table tbody tr:hover {
  background: rgba(220, 228, 218, 0.75);
  transform: translateY(-1px);
}

.service-table tbody tr:last-child td {
  border-bottom: none;
}

.service-table td:first-child {
  color: #273c2a;
}

.service-table td:nth-child(2) {
  text-align: center;
  color: #4a5f49;
  font-weight: 500;
}

.service-table td:nth-child(3) {
  white-space: nowrap;
  font-weight: 600;
  text-align: center;
  color: #27412d;
}

.service-name-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.service-name-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #5b7754;
}

.service-name-icon .material-icons-outlined {
  font-size: 1.06rem;
}

.service-name-text {
  flex: 1;
  display: block;
  font-weight: 600;
  color: #2f4332;
  font-size: 1.02rem;
  line-height: 1.35;
}

.service-info-trigger--leading {
  appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-info-trigger--leading .material-icons-outlined {
  font-size: 1.12rem;
}

.service-info-trigger--leading:hover,
.service-info-trigger--leading:focus-visible {
  color: #3f5d3f;
  transform: scale(1.05);
  outline: none;
}

.service-info-trigger--leading .material-icons-outlined {
  font-size: 1.05rem;
}

.service-info-trigger--leading:hover,
.service-info-trigger--leading:focus-visible {
  color: #2f4631;
  transform: scale(1.06);
  outline: none;
}
body.modal-open {
  overflow: hidden;
}

.service-info-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.service-info-modal.is-open {
  display: flex;
}

.service-info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-info-dialog {
  position: relative;
  background: #fdf9f2;
  border-radius: 18px;
  padding: 2rem;
  width: min(480px, 90vw);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-info-dialog:focus {
  outline: none;
}

.service-info-title {
  margin: 0;
  color: #4e6a49;
  font-size: 1.5rem;
}

.service-info-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-info-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.service-info-content p {
  margin: 0;
  line-height: 1.6;
  color: #5b7754;
  text-align: left;
}

.service-info-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #5b7754;
  cursor: pointer;
  transition: color 0.2s ease;
}

.service-info-close:hover,
.service-info-close:focus-visible {
  color: #5b7754;
  outline: none;
}

.etiquette-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 25, 20, 0.6);
  z-index: 10020;
}

.etiquette-modal.is-open {
  display: flex;
}

.etiquette-modal__dialog {
  position: relative;
  width: min(520px, 96vw);
  background: #fffefb;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  color: #2f4631;
  max-height: 90vh;
  overflow-y: auto;
  outline: none;
}

.etiquette-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  color: #7d5642;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 999px;
  width: 2.25rem;
  height: 2.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.etiquette-modal__close:hover,
.etiquette-modal__close:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  outline: none;
}

.etiquette-modal__header {
  margin-bottom: 1rem;
}

.etiquette-modal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c19a6b;
  margin: 0 0 0.35rem;
}

.etiquette-modal__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: #3d5641;
  line-height: 1.3;
}

.etiquette-modal__body {
  color: #4b6248;
  line-height: 1.6;
}

.etiquette-modal__hint {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(193, 154, 107, 0.15);
  color: #7d5642;
  font-size: 0.95rem;
  font-weight: 600;
}

.etiquette-modal__scroll {
  margin-top: 1rem;
  max-height: min(45vh, 380px);
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(193, 154, 107, 0.3);
  background: #fff;
  padding: 1rem 1.25rem;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.08);
}

.etiquette-modal__scroll h4 {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.05rem;
  color: #3b553f;
}

.etiquette-modal__scroll strong {
  color: #7d5642;
}

.etiquette-modal__item {
  margin: 0.45rem 0 0;
  color: #4b6248;
}

.etiquette-modal__item + .etiquette-modal__item {
  margin-top: 0.35rem;
}

.etiquette-modal__confirm {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #3d4c38;
  cursor: pointer;
}

.etiquette-modal__confirm input {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  border-radius: 4px;
  border: 2px solid rgba(61, 86, 65, 0.6);
  background: #fff;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.etiquette-modal__confirm input:checked {
  background: #5b7754;
  border-color: #5b7754;
  box-shadow: 0 0 0 2px rgba(91, 119, 84, 0.2);
}

.etiquette-modal__confirm input:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%23fff' d='M10.6.8 4.3 7.1 1.4 4.2 0 5.6l4.3 4.2L12 2.1z'/%3E%3C/svg%3E") center/0.7rem no-repeat;
}

.etiquette-modal__confirm input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.45);
}

.etiquette-modal__body p {
  margin-top: 0;
}

.etiquette-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.etiquette-modal__actions button {
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  border: none;
}

.etiquette-modal__primary {
  background: linear-gradient(120deg, #c19a6b, #b27f4b);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.etiquette-modal__primary:hover,
.etiquette-modal__primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
  outline: none;
}

.etiquette-modal__secondary {
  background: rgba(193, 154, 107, 0.12);
  color: #7d5642;
  border: 1px solid rgba(193, 154, 107, 0.4);
}

.etiquette-modal__secondary:hover,
.etiquette-modal__secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(193, 154, 107, 0.2);
  outline: none;
}

.etiquette-modal__primary:disabled,
.etiquette-modal__primary.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.etiquette-modal__primary:disabled:hover,
.etiquette-modal__primary:disabled:focus-visible {
  transform: none;
  box-shadow: none;
}

@media (max-width: 520px) {
  .etiquette-modal__actions {
    flex-direction: column;
  }

  .etiquette-modal__actions button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .etiquette-modal {
    align-items: flex-start;
    padding: 0.75rem;
    overflow-y: auto;
  }

  .etiquette-modal__dialog {
    width: 100%;
    max-width: 100%;
    margin-top: 0.75rem;
  }

  .etiquette-modal__scroll {
    max-height: none;
  }
}


.booking {
  margin-top: 2rem;
  text-align: center;
}

.booking a {
  background-color: #5b7754;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: 0;
}

.booking a:hover {
  background-color: #486648;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;      
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow:
    0 0 0 2px #a8c0a8,
    0 8px 22px rgba(0, 0, 0, 0.12);
}

.gallery-separator {
  width: 70%;
  border-bottom: 1.5px solid #b6b3a7;
  opacity: 0.65;
  margin: 3rem auto 65px auto;
}


.contact-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.contact {
  flex: 1 1 360px;
  background: radial-gradient(circle at top left, rgba(244, 240, 229, 0.95), rgba(231, 226, 211, 0.9));
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(63, 88, 64, 0.18), 0 0 0 2px rgba(168, 192, 168, 0.45);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.6), transparent 55%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: stretch;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(239, 236, 225, 0.85));
  box-shadow: 0 12px 24px rgba(77, 95, 70, 0.12), inset 0 0 0 1px rgba(77, 105, 76, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.contact-item:not(.contact-item--link) {
  cursor: default;
}

.contact-item.contact-item--link:hover,
.contact-item.contact-item--link:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(77, 95, 70, 0.18), inset 0 0 0 1px rgba(77, 105, 76, 0.22);
  outline: none;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(108, 138, 96, 0.15), rgba(80, 112, 74, 0.2));
  color: #4f6f4a;
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.contact-icon i {
  font-size: 1.05rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(50, 71, 47, 0.6);
  font-weight: 600;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2f4332;
  line-height: 1.45;
  word-break: break-word;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.contact-value a:hover,
.contact-value a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.map {
  flex: 1 1 350px;
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #a8c0a8;
}


.modern-header {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('images/header-bg.png') center center/cover no-repeat,
              linear-gradient(90deg, #a8c0a8cc, #dcd2becc);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  padding: 2rem 1rem 1.5rem 1rem;
}

.header-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.header-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  column-gap: 2rem;
  text-align: left;
  justify-content: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 3;
}

.primary-nav ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
}

.primary-nav li {
  flex: 0 1 auto;
  display: flex;
  text-align: center;
}

.nav-backdrop {
  display: none;
  background: rgba(44, 54, 41, 0.28);
  backdrop-filter: blur(2px);
}

.primary-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  font-weight: 600;
  color: #5b7754;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  min-height: 42px;
  line-height: 1.2;
  font-size: clamp(0.72rem, 0.6rem + 0.5vw, 0.92rem);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background-color: #5b7754;
  color: #fff;
  box-shadow: 0 6px 16px rgba(91, 119, 84, 0.28);
  outline: none;
}

.nav-highlight a {
  background-color: #5b7754;
  color: #fff;
  box-shadow: 0 6px 16px rgba(91, 119, 84, 0.2);
}

.nav-highlight a:hover,
.nav-highlight a:focus-visible {
  background-color: #486648;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(244, 240, 228, 0.95), rgba(231, 226, 210, 0.95));
  border: 1px solid rgba(105, 132, 92, 0.35);
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
  box-shadow: 0 12px 24px rgba(91, 119, 84, 0.16);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), rgba(235, 229, 210, 0));
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.nav-toggle::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  opacity: 0.55;
  pointer-events: none;
}

.nav-toggle:hover::before,
.nav-toggle:focus-visible::before {
  opacity: 0.85;
}

.nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
}

.nav-toggle[aria-expanded="true"]::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: linear-gradient(135deg, rgba(234, 229, 213, 0.98), rgba(222, 216, 199, 0.98));
  box-shadow: 0 14px 26px rgba(63, 88, 64, 0.26);
  outline: none;
  transform: translateY(-2px);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.6px;
  background: #4d6546;
  margin: 4px auto;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-toggle[aria-expanded="true"] {
  transform: translateY(0);
  background: linear-gradient(135deg, #5f7a57, #4e6c49);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(63, 88, 64, 0.32);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: #fefdf7;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle-bar:nth-of-type(3) {
  width: 16px;
}

.nav-toggle-bar:nth-of-type(4) {
  width: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.primary-nav.is-open {
  display: flex;
}

@media (max-width: 900px) {
  .nav-toggle,
  .nav-backdrop,
  .primary-nav {
    display: none !important;
  }

  .header-wrap {
    align-items: center;
    padding: clamp(0.6rem, 2.4vw, 1.2rem) clamp(1.4rem, 5vw, 2.2rem);
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 6vw, 2.4rem);
    position: relative;
    padding-right: 0;
  }

  .header-logo-text {
    width: clamp(120px, 38vw, 160px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0) + 1.05rem);
    right: clamp(1rem, 4vw, 1.6rem);
    z-index: 40;
  }

  body.nav-open .nav-toggle {
    right: clamp(1rem, 4vw, 1.6rem);
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 88vw);
    max-width: 100%;
    margin-left: auto;
    padding: 0 1.75rem 2.75rem;
    padding-top: calc(env(safe-area-inset-top, 0) + clamp(4rem, 14vw, 5.5rem));
    padding-bottom: calc(env(safe-area-inset-bottom, 0) + 2.75rem);
    background: radial-gradient(circle at top left, rgba(247, 244, 236, 0.98), rgba(238, 233, 218, 0.98)),
                linear-gradient(180deg, rgba(248, 246, 236, 0.96) 0%, rgba(235, 231, 214, 0.98) 100%);
    border-radius: 32px 0 0 32px;
    box-shadow: -30px 0 45px rgba(33, 42, 31, 0.25);
    border: 1px solid rgba(91, 119, 84, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(108%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    z-index: 30;
    overflow-y: auto;
    backdrop-filter: blur(8px);
  }

  .primary-nav::before {
    content: "menü";
    position: absolute;
    top: calc(env(safe-area-inset-top, 0) + clamp(1.2rem, 5vw, 1.9rem));
    left: clamp(1.4rem, 5vw, 2.4rem);
    font-family: "Quicksand", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(50, 71, 47, 0.55);
    font-weight: 600;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.85rem;
    width: 100%;
    margin: 0;
    padding: 1.2rem 0 0;
  }

  .primary-nav li {
    width: 100%;
    flex: none;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.95rem 1.15rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(246, 243, 232, 0.92), rgba(234, 231, 217, 0.92));
    color: #324c35;
    font-size: clamp(0.96rem, 4vw, 1.08rem);
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(82, 103, 71, 0.12), inset 0 0 0 1px rgba(98, 125, 92, 0.12);
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .primary-nav a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: linear-gradient(135deg, rgba(238, 236, 221, 0.96), rgba(227, 223, 207, 0.96));
    box-shadow: 0 14px 26px rgba(82, 103, 71, 0.18), inset 0 0 0 1px rgba(98, 125, 92, 0.22);
    color: #1f3a29;
    transform: translateX(2px);
  }

  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after {
    transform: translateX(5px) rotate(45deg);
  }

  .primary-nav li.nav-highlight a {
    background: linear-gradient(135deg, #6d8b5e 0%, #4f6f4a 100%);
    color: #fdfcf6;
    box-shadow: 0 18px 30px rgba(68, 92, 60, 0.32);
    border: 1px solid rgba(237, 242, 229, 0.35);
  }
  .primary-nav li.nav-highlight a:hover,
  .primary-nav li.nav-highlight a:focus-visible {
    background: linear-gradient(135deg, #5b7e54 0%, #446644 100%);
    box-shadow: 0 20px 36px rgba(63, 88, 64, 0.38);
    color: #fff;
  }

  .primary-nav li.nav-highlight a::after {
    border-color: rgba(255, 255, 255, 0.9);
  }

  .primary-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(46, 57, 40, 0.32);
    backdrop-filter: blur(7px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #e5e8db77 0%, #f5f3efee 100%);
  z-index: 1;
  pointer-events: none;
}


.header-text {
  position: relative;
  z-index: 3;
  text-align: center;
}

.modern-header h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.1rem;
  color: #37553a;
  text-shadow: 2px 2px 16px #e5ede4c2;
  margin: 0 0 0.2rem 0;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.modern-header p {
  font-style: italic;
  font-size: 1.3rem;
  color: #5b7754;
  text-shadow: 1px 1px 10px #fffde6b0;
  text-align: center;
  margin: 0 auto;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #e5e8dbbb 30%, #f5f3efcc 100%);
  z-index: 1;
  pointer-events: none;
}

.modern-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 2.3rem 1rem;
  position: relative;
  overflow: hidden;
  background: url('images/footer-bg.png') center center/cover no-repeat,
              linear-gradient(90deg, #a8c0a8cc, #dcd2becc);
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.07);
  text-align: center; 
}

.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact a {
  color: #5b7754;
  text-decoration: underline;
  font-weight: 500;
}
.contact a:hover {
  color: #3a5a3c;
  text-decoration: none;
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  font-weight: bold;
  user-select: none;
}

.responsive-table {
  overflow-x: auto;
}
.service-table {
  width: 100%;
  min-width: unset;
  font-size: 1rem;
  border-collapse: separate;
}


.header-logo-text {
  position: relative;
  z-index: 2; 
  margin-bottom: 0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
}

.logo-icon {
  width: clamp(120px, 34vw, 170px);
  height: auto;
  display: block;
  margin: 0 auto;
}

p, li, address {
  text-align: justify;
  hyphens: auto;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.portrait-img {
  float: left;
  width: 160px;
  height: auto;
  margin: 0 1.5rem 1rem 0;
  border-radius: 12px;
  box-shadow:
    0 0 0 2px #a8c0a8,
    0 6px 16px rgba(0, 0, 0, 0.12);
  display: block;
}

.about-text {
  flex: 1;
  min-width: 250px;
}


#velemeny .logo-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px; height:56px;
  border-radius:50%;
  border:1px solid rgba(193,154,107,0.7); 
  background:#fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 6px 0 10px 0;
  transition: transform .08s ease, filter .15s ease;
}
#velemeny .logo-button:hover { filter:brightness(0.96); transform: translateY(-1px); }
#velemeny .logo-button:active { transform: translateY(0); }
#velemeny .logo-mark { width:32px; height:32px; }




#velemeny .logo-button.pill {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(193,154,107,0.7); 
  background:#fff;
  color:#3a3a3a;
  text-decoration:none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-top: 6px;
  transition: transform .08s ease, filter .15s ease;
}
#velemeny .logo-button.pill:hover { filter:brightness(0.97); transform: translateY(-1px); }
#velemeny .logo-button.pill:active { transform: translateY(0); }
#velemeny .logo-button.pill .logo-mark { width:22px; height:22px; }
#velemeny .logo-button.pill .logo-label { font-weight:600; color:#c19a6b; }




#velemeny .logo-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(193,154,107,0.7) !important; 
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  text-decoration: none !important;
}
#velemeny .logo-button .logo-mark {
  width: 22px !important; height: 22px !important;
}
#velemeny .logo-button .logo-label {
  display: inline-block !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  color: #c19a6b !important;
}

#velemeny .review-content .desktop-copy { display: inline; }
#velemeny .review-content .mobile-copy { display: none; }



@media (min-width: 901px) {
  #velemeny .logo-button.mobile-only { display: none !important; }
}



header a, header h1, header h2, header nav a { color: #a8c0a8; }
      header a:hover { filter:brightness(0.9); }


.icon-primary { color: #5b7754; }
.icon-spaced { margin-right: 0.6rem; }
.clearfix { clear: both; }
.text-relaxed { line-height: 1.8; font-size: 1.05rem; }
.mb-1 { margin-bottom: 1rem; }
.week-info { font-weight: 600; color: #5b7754; }

/*.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }*/
.gallery img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 14px rgba(0,0,0,0.08); transition: transform 200ms ease, box-shadow 200ms ease; }
.gallery img:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }


table { width: 100%; border-collapse: collapse; margin: 1rem 0; background: #fff; overflow: hidden; border-radius: 12px; }
thead th { background: #a8c0a8; color: #5b7754; text-align: left; padding: 0.75rem 1rem; font-weight: 700; }
tbody td { padding: 0.75rem 1rem; border-top: 1px solid #e5e8db; }
tbody tr:nth-child(odd) { background: #f6f4ee; }
tbody tr:hover { background: #e5e8db; }
caption { caption-side: bottom; padding: 0.5rem; color: #486648; font-size: 0.95rem; }


header h1, header h2 { color: #5b7754; font-weight: 700; }
header nav a { color: #486648; font-weight: 600; }
header nav a:hover { filter: brightness(0.9); }


.muted { color: #486648; opacity: 0.9; }


.mt-2 { margin-top: 2rem; }
.img-bordered { border: 1px solid #ccc; border-radius: 8px; padding: 4px; }


.payments-inline { margin-top: 1.25rem; }
.payments-inline .section-title { margin-bottom: .5rem; }

.pay-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  list-style: none;
  margin: 0.5rem 0 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(145deg, rgba(245, 241, 232, 0.92), rgba(232, 228, 218, 0.9));
  border-radius: 22px;
  border: 1px solid rgba(155, 175, 148, 0.3);
  box-shadow: 0 24px 48px rgba(63, 88, 64, 0.14);
}

.pay-badges li {
  display: flex;
}

.badge {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(0.85rem, 2vw, 1.1rem);
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(239, 236, 225, 0.9));
  box-shadow: 0 16px 36px rgba(57, 77, 56, 0.12), inset 0 0 0 1px rgba(177, 194, 174, 0.35);
  color: #2f4332;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge:hover,
.badge:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(63, 88, 64, 0.2), inset 0 0 0 1px rgba(129, 153, 122, 0.5);
}

.badge-icon {
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 6vw, 3.2rem);
  height: clamp(2.75rem, 6vw, 3.2rem);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(237, 243, 236, 0.96), rgba(220, 230, 220, 0.85));
  box-shadow: inset 0 0 0 1px rgba(155, 175, 148, 0.45), 0 10px 22px rgba(63, 88, 64, 0.18);
  color: #5b7754;
}

.badge-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.badge-label {
  display: block;
  letter-spacing: 0.01em;
}

.pay-badges .icon-cash,
.pay-badges .icon-otp {
  color: #2bb673;
}

.pay-badges .icon-transfer {
  color: #8d6e63;
}

.pay-badges .icon-visa {
  color: #1a1f71;
}

.pay-badges .icon-mastercard {
  display: inline-block;
  background: linear-gradient(90deg, #eb001b 0%, #f79e1b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.week-info {
  font-weight: 600;
  color: #5b7754; 
}




.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  overflow: hidden;
}
.hours-table th, .hours-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee2d6;
}
.hours-table thead th {
  background: #c19a6b;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.hours-table tbody tr:nth-child(even) td {
  background: #fdf8f3;
}
.hours-table td:last-child {
  text-align: center;
}


#velemeny .review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
#velemeny .review-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
#velemeny .review-content {
  flex: 1;
  max-width: 600px;
}
#velemeny .review-content p {
  margin: 0 0 14px 0;
  line-height: 1.6;
}
#velemeny .review-content .logo-button {
  margin-top: auto;
}
#velemeny .review-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#velemeny .review-qr {
  flex: 0 0 auto;
  text-align: center;
}
#velemeny .review-qr img {
  display:block;
  width:180px; height:180px;
  margin:0 auto;
  border:1px solid #ccc;
  border-radius:10px;
  padding:6px;
}
#velemeny .review-hint { opacity:.85; margin-top:-4px; margin-bottom:10px; }

/* === Global anti-save deterrents for images === */
img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none; /* clicks hit parent (e.g., <a>), not the <img> */
}

/* Utility classes to scope or harden where needed */
.no-save,
.no-save * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}
.no-save-overlay { position: relative; }
.no-save-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}
/* Ensure gallery anchors can host overlay without breaking layout */
.gallery a.lightbox { position: relative; display: block; }



/* Restore gallery hover when images are non-interactive (pointer-events:none) */
.gallery a.lightbox:hover img {
  transform: translateY(-4px) scale(1.01); box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Ensure anchors are clickable on mobile */
.gallery a.lightbox { pointer-events: auto; z-index: 2; }

/* Improve mobile tap behavior */
.gallery { touch-action: manipulation; }

/* Mobile scroll/tap improvements */
.gallery { touch-action: pan-y; }
.gallery img { -webkit-user-drag: none; user-select: none; }
.updates-box {
  margin: 2rem 0 1.5rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(149, 170, 139, 0.35);
  background: linear-gradient(180deg, rgba(247, 244, 233, 0.92), rgba(236, 231, 218, 0.9));
  box-shadow: 0 12px 32px rgba(68, 88, 64, 0.12);
  position: relative;
}

.updates-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.updates-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b5338;
}

.updates-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #324633;
}
.updates-list {
  list-style: none;
  padding: 1.2rem;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}


.updates-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.updates-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #5b7754;
  min-width: 1.6rem;
}

.updates-text {
  display: block;
  flex: 1 1 auto;
}

.updates-text p {
  margin: 0;
}

.updates-text p + p {
  margin-top: 0.45rem;
}

