/* === RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F0F4EF;
  color: #184D47;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.75;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
}
a {
  color: #184D47;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DDC57B;
  outline-offset: 2px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #DDC57B;
}

/* ============ ROOT SPACING & PATTERNS ============ */
:root {
  --color-primary: #184D47;
  --color-secondary: #DDC57B;
  --color-accent: #F0F4EF;
  --color-card-bg: #FFF9F2;
  --color-shadow: rgba(24,77,71,0.09);
  --font-display: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-big: 20px;
  --radius-medium: 12px;
  --radius-small: 6px;
  --shadow-1: 0 4px 18px var(--color-shadow);
  --section-spacing: 60px;
  --gap: 24px;
  --container-width: 1100px;
}

/* ============ TYPOGRAPHY ============ */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 #e7dea3, 0 2px 0 #e7dea3;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
}
p, li, td {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  background: #fff4c2;
  color: #184D47;
  border-left: 6px solid #DDC57B;
  padding: 18px 26px;
  margin-bottom: 12px;
  border-radius: var(--radius-medium);
}
cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: #b89440;
  margin-bottom: 0;
  margin-top: 6px;
}
strong {
  color: #9f7718;
  font-weight: 700;
}
ul, ol {
  padding-left: 20px;
}
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* ============ CONTAINER & SECTIONS ============ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section, section {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
  background: none;
  border-radius: 0;
}

@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .section, section {
    padding: 34px 10px;
  }
}

/* ============ HEADER & NAV ============ */
header {
  width: 100%;
  background: #FFF9F2;
  box-shadow: 0 5px 18px -9px var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  width: 110px;
  min-width: 82px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: 18px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.035rem;
  color: var(--color-primary);
  padding: 4px 12px 4px 0;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #9F7718;
}

.cta.primary {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 11px 32px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: 0.5rem;
  box-shadow: 0 2px 14px -2px #f6e3b2;
  border: 2px solid #f6e3b2;
  transition: 
    background 0.18s,
    color 0.18s,
    box-shadow 0.23s;
  text-shadow: 0 1px 0 #fefdff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff4c2;
  color: #7B4E20;
  box-shadow: 0 4px 24px 0 #E2C99A;
}

.cta.secondary {
  display: inline-block;
  font-family: var(--font-display);
  background: #fff4c2;
  color: #184D47;
  border-radius: 35px;
  padding: 9px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #e7dea3;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px -2px #e7dea3;
  transition: background 0.18s, color 0.16s, border 0.16s, box-shadow 0.2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #DDC57B;
  color: #184D47;
  border: 2px solid #bca54a;
}

.mobile-menu-toggle {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.8rem;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 2px solid #e7dea3;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
  z-index: 1001;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #fff8e2;
  color: #7B4E20;
  border-color: #f0e6c2;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff9ee;
  z-index: 1002;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.69,.06,.36,1.32);
  box-shadow: 8px 0 40px -12px #967b0d29;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 18px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 12px;
  font-size: 2rem;
  z-index: 1003;
  width: 46px; height: 46px;
  border: 2px solid #e7dea3;
  box-shadow: 0 1px 8px #f6e3b2;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #fff4c2;
  color: #9f7718;
}
.mobile-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  margin-top: 90px;
  margin-left: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #184D47;
  padding: 14px 0;
  text-shadow: 0 1px 0 #faf6e1;
  letter-spacing: 0.04em;
  border-bottom: 2px dotted #ddc57b33;
  width: 100%;
  transition: color 0.16s, border 0.16s;
  outline: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #b89440;
  border-bottom: 2px solid #b89440;
}

/* ============ HERO SECTION ============ */
.hero {
  width: 100%;
  background: repeating-linear-gradient(-45deg, #fff4c2, #fff4c2 40px, #FAE6A1 60px, #fff4c2 80px);
  border-bottom: 7px double #e7dea3;
  box-shadow: 0 1px 16px -8px var(--color-shadow);
  position: relative;
  min-height: 290px;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  margin-bottom: 22px;
  max-width: 600px;
}
.hero p {
  font-size: 1.18rem;
  color: #344b30;
  margin-bottom: 16px;
}
.hero .cta.primary {
  margin-top: 12px;
}

@media (max-width: 650px) {
  .hero .content-wrapper { max-width: 98vw; }
  .hero { padding-bottom: 0;  }
}

/* ============ FEATURE SECTION & ITEMS ============ */
.features {
  background: #fffbe8;
  border-top: 2px dashed #DDC57B;
  border-bottom: 2px dashed #DDC57B;
}
.feature-grid,
.content-wrapper.feature-grid,
.content-wrapper.feature-list,
.content-wrapper.feature-icons {
  display: flex;
    flex-wrap: nowrap;  gap: 24px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  border: 2px solid #e7dea3;
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 14px -4px #e7dea3;
  padding: 24px 22px 18px 22px;
  margin-bottom: 20px;
  width: calc(48% - 12px);
  min-width: 250px;
  max-width: 340px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 40px; height: 40px;
  margin-bottom: 7px;
}
.feature-item:hover {
  box-shadow: 0 8px 36px -8px #e7dea355;
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}

@media (max-width: 900px) {
  .feature-grid, .content-wrapper.feature-grid, .content-wrapper.feature-list, .content-wrapper.feature-icons {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    width: 100%;
    max-width: 100%;
  }
}

.features ul {
  margin-top: 10px;
  margin-bottom: 0;
}
.features ul li {
  font-size: 1.03rem;
  color: #6b5b15;
  position: relative;
  padding-left: 20px;
}
.features ul li::before {
  content: '\25B8';
  color: #c9b13c;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.18em;
}

/* ============ SERVICE CARDS & GRIDS ============ */
.services {
  background: #F0F4EF;
}
.service-list, .service-grid, .content-wrapper.service-list, .content-wrapper.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.service-item {
  background: var(--color-card-bg);
  border: 2px solid #e7dea3;
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 12px -4px #e7dea3;
  padding: 24px 22px 15px 22px;
  margin-bottom: 20px;
  min-width: 250px;
  width: calc(45% - 12px);
  transition: box-shadow 0.18s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.service-item img {
  width: 42px; height: 42px;
  margin-bottom: 8px;
}
.service-item:hover {
  box-shadow: 0 8px 34px -8px #e7dea355;
  transform: translateY(-4px) scale(1.02) rotate(1deg);
}
.price-table table {
  margin: 20px 0 14px 0;
  background: #FFF9F2;
  border-radius: var(--radius-medium);
  box-shadow: 0 1px 10px #eedba153;
  border: 1.5px solid #DDC57B;
}
.price-table th {
  background: #DDC57B;
  color: #184D47;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.price-table td {
  background: #FFF9F2;
  color: #184D47;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .service-list, .service-grid, .content-wrapper.service-list, .content-wrapper.service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-item { width: 100%; max-width: 95vw; }
}

/* =========== CARD PATTERNS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* ============= CONTENT FLEX GRIDS ============= */
.content-grid, .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.text-section {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #fffbe8;
  border-top: 2px dashed #ddc57b;
  border-bottom: 2px dashed #ddc57b;
}
.content-wrapper.testimonial-slider .testimonial-card,
.content-wrapper.testimonial-list .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF9F2;
  border: 2px solid #DDC57B;
  border-radius: var(--radius-big);
  box-shadow: 0 2px 14px -6px #bca54a33;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 330px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #184D47;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 4px 0;
}
.testimonial-card cite {
  margin-left: 8px;
  color: #967b0d;
  font-size: 0.95rem;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 34px -8px #e7dea355;
  transform: translateY(-2px) scale(1.01) rotate(-1deg);
}

@media (max-width: 900px) {
  .content-wrapper.testimonial-slider,
  .content-wrapper.testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card { min-width: 90vw; max-width: 100vw; }
}

/* ========== ABOUT/CONTACT FLEX ========= */
.text-section, .about, .contact {
  background: #F0F4EF;
  border-radius: var(--radius-medium);
  box-shadow: 0 1px 8px -4px #bca54a55;
  margin-bottom: var(--section-spacing);
}
.text-section ul, .about ul, .contact-details, .about ul {
  margin-bottom: 16px;
}

.contact-details address, .contact-details p {
  color: #7B4E20;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.map {
  font-size: 0.97rem;
  background: #fffbe8;
  border-radius: var(--radius-small);
  padding: 12px 16px;
}

/* ========== ICONS INSIDE FEATURES ETC. ========== */
.feature-icons, .wellness-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.feature-icons img {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}
.unique-kids-offers, .city-trip-overview, .culinary-experiences, .wellness-retreats-list, .nature-parks-overview {
  margin: 10px 0 3px 0;
}

/* ========== FOOTER ========== */
footer {
  background: #184D47;
  color: #F0F4EF;
  padding: 36px 0 16px 0;
  font-family: var(--font-body);
  border-top: 10px double #DDC57B;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #DDC57B;
  font-size: 1rem;
  text-decoration: underline wavy #F0F4EF 1px;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff4c2;
}
.contact-info address, .contact-info p {
  color: #fffbe8;
  font-size: 1rem;
  margin-bottom: 6px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.social-links img {
  width: 42px;
  height: 42px;
  filter: grayscale(11%) drop-shadow(0 1px 5px #fffde388);
}
footer small {
  color: #fffbe8;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 1.2em;
  display: block;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 10px;
  }
  .social-links { margin-left: 0; }
}

/* =========== BUTTONS & INTERACTIVES =========== */
button, .cta, .mobile-menu-toggle, .cookie-banner button {
  cursor: pointer;
  transition: background 0.23s, color 0.14s, box-shadow 0.18s;
}
button::-moz-focus-inner {
  border: 0;
}

/* ================ COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #FFF9F2;
  border-top: 2px solid #DDC57B;
  box-shadow: 0 -2px 30px #e7dea366;
  color: #184D47;
  font-size: 1.05em;
  padding: 24px 14px;
  z-index: 3200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: cookie-slide-up 0.6s cubic-bezier(.72,.09,.42,1.09) 1;
}
@keyframes cookie-slide-up {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 2 1 280px;
  margin-bottom: 0;
  color: #184D47;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: var(--font-display);
  padding: 7px 20px;
  font-size: 1rem;
  border-radius: 22px;
  border: 2px solid #e7dea3;
  color: #184D47;
  background: #fff4c2;
  box-shadow: 0 2px 12px -6px #e7dea3;
  font-weight: 600;
  margin-bottom: 4px;
}
.cookie-banner button:hover, 
.cookie-banner button:focus {
  background: #DDC57B;
  color: #7B4E20;
}
.cookie-banner .settings {
  background: #F0F4EF;
  color: #184D47;
  border: 2px solid #DDC57B;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #fffbe8;
  color: #7B4E20;
}

/* =========== COOKIE MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: #FFF9F2;
  border: 2px solid #DDC57B;
  border-radius: 24px;
  box-shadow: 0 8px 48px #96843C33;
  z-index: 3500;
  width: 96vw;
  max-width: 440px;
  padding: 36px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-pop 0.3s cubic-bezier(.13,.81,.35,1.35);
}
@keyframes cookie-pop {
  from { opacity: 0; transform: translate(-50%, -36%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  justify-content: flex-start;
}
.cookie-modal input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: #DDC57B;
}
.cookie-modal .essential {
  color: #184D47;
  font-weight: 700;
}
.cookie-modal .actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal button {
  font-family: var(--font-display);
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 22px;
  border: 2px solid #e7dea3;
  color: #184D47;
  background: #fff4c2;
  font-weight: 600;
}
.cookie-modal button:hover, 
.cookie-modal button:focus {
  background: #DDC57B;
  color: #7B4E20;
}

/* ========== RESPONSIVE, FLEX, MISC ========== */
@media (max-width: 650px) {
  html { font-size: 15px; }
  .footer-links { font-size: 0.97rem; }
  h1 { font-size: 2.1rem;}
  h2 { font-size: 1.45rem; }
}

@media (max-width: 500px) {
  .container, .section, section {
    padding-right: 2vw;
    padding-left: 2vw;
  }
  .cookie-modal { padding: 24px 7px 16px 7px; max-width: 98vw; }
}

/* ========== UTILITIES ========== */
.mb-lg { margin-bottom: 32px; }
.mb-md { margin-bottom: 20px; }
.mt-md { margin-top: 20px; }
.text-center { text-align: center; }
.flex-grow { flex-grow: 1; }
.d-none { display: none!important; }

/* ========== RETRO VINTAGE EFFECTS ========== */
.hero, .features, .testimonials, .about, .services, .cookie-banner, .cookie-modal, .footer-links a {
  font-family: var(--font-display);
}
.section, .features, .testimonials, .about, .services, .hero, .cookie-banner, .cookie-modal {
  position: relative;
  overflow: visible;
}
.section:before, .features:before, .testimonials:before, .hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -16px; top: -16px;
  width: 32px; height: 32px;
  background: url('../assets/vintage-corner-lt.svg') no-repeat center center/contain;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}
.section:after, .features:after, .testimonials:after, .hero:after {
  content: '';
  display: block;
  position: absolute;
  right: -16px; bottom: -16px;
  width: 32px; height: 32px;
  background: url('../assets/vintage-corner-rb.svg') no-repeat center center/contain;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #222 !important; }
}
