/* 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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FDF6E4;
  color: #362E1A;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #204080;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:active, a:focus {
  color: #F1C93A;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}
img {
  max-width: 100%;
  display: block;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #204080;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 #F1C93A;
}
h1 {font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.35rem; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1.10rem; margin-bottom: 8px;}
p, ul, ol, li {font-size: 1.05rem; margin-bottom: 12px;}
strong {
  font-weight: 700;
}

/* RETRO COLORS & PATTERNS */
:root {
  --primary: #204080;
  --secondary: #F1C93A;
  --accent: #D77A0B;
  --cream: #FDF6E4;
  --brown: #A17F5C;
  --retro-bg: #FDF6E4;
  --retro-border: #A17F5C;
  --retro-shadow: 0 4px 18px 0 rgba(161,127,92,0.12);
}

body {
  background: var(--retro-bg);
}
/* subtle retro pattern on main BG */
body:before {
  content: '';
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  background: repeating-linear-gradient(135deg, #F1C93A 0 2px, transparent 2px 30px);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MANDATORY SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF5CB;
  border-radius: 22px;
  box-shadow: var(--retro-shadow);
  border: 2px solid #F7E0A2;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF9E8;
  border: 2px solid #F1C93A;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 11px rgba(32,64,128,0.08);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0 3px 13px rgba(32,64,128,.067);
  border-radius: 14px;
  border-top: 5px solid var(--secondary);
  margin-bottom: 24px;
  min-width: 250px;
  max-width: 430px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEXBOX ONLY, NO GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFE69D;
  border: 2px solid #E5B358;
  border-radius: 15px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px #d1b38623;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.15s;
}
.feature-grid > div:hover {
  transform: translateY(-3px) scale(1.037);
  box-shadow: 0 6px 20px #e5b35822;
}
.feature-grid img {
  width: 50px; height: 50px;
  filter: sepia(40%) hue-rotate(-20deg) saturate(125%);
}

.logo-wall {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 32px 0 0 0;
  flex-wrap: wrap;
}
.logo-wall img {
  width: 56px; height: 56px;
  filter: grayscale(33%) brightness(0.95) contrast(1.05)
  drop-shadow(0 2px 6px #a17f5c18);
}

.customer-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
}

.guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.guide-list .text-section {
  background: #FFF9E8;
  border-radius: 13px;
  border: 2px solid #EDD7B2;
  box-shadow: 0 1.5px 7px #a17f5c14;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 10px;
  transition: box-shadow 0.16s;
}
.guide-list .text-section:hover {
  box-shadow: 0 8px 32px #d6ae732f;
}

/* HEADER STYLES */
header {
  background: #FFF5CB;
  border-bottom: 2px solid #F1C93A;
  box-shadow: 0 4px 18px #a17f5c17;
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 16px;
  min-height: 64px;
}
.logo-link img {
  padding: 6px 0;
  width: 142px; height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 9px 18px;
  border-radius: 9px;
  color: var(--primary);
  background: transparent;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
nav a.cta {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
  box-shadow: 0 3px 14px #20408022;
  font-size: 1.14rem;
  padding: 9px 23px;
  text-shadow: 1px 1px 0 #b38e2b12;
  transition: background .2s, color .2s, transform .2s;
}
nav a.cta:hover{
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  border-color: var(--primary);
}
nav a:hover:not(.cta) {
  background: #f5e3af;
  color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.7rem;
  border-radius: 9px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background .15s, box-shadow .16s;
  box-shadow: 0 2px 7px #20408021;
  cursor: pointer;
  z-index: 111;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
/* MOBILE MENU SYSTEM */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 0 0 0;
  background: #FFF9E8;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.77,.21,.16,1.02);
  box-shadow: 6px 0 18px #a17f5c22;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  margin: 25px 22px 10px 0;
  padding: 4px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 18px 40px;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--primary);
  background: #fffffa;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.21rem;
  padding: 14px 0;
  border-radius: 7px;
  transition: color 0.18s, background 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

@media (max-width: 1024px) {
  nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .logo-link img {
    width: 116px;
  }
  nav a, nav a.cta {
    font-size: 1rem;
    padding: 8px 10px;
  }
}
@media (max-width: 800px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
}

/* SECTION & CARD SPACING */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  position: relative;
  z-index: 1;
}
section .container {
  background: #FFF5CB;
  border-radius: 20px;
  border: 2px solid #F1C93A;
  box-shadow: var(--retro-shadow);
  margin-bottom: 0;
  padding: 35px 20px;
  gap: 0;
  position: relative;
}
.text-section {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* BUTTON & CTA */
.cta, .btn, button, input[type=submit], input[type=button] {
  display: inline-block;
  background: var(--primary);
  color: #FFF;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  border: 2px solid var(--secondary);
  padding: 12px 28px;
  border-radius: 11px;
  box-shadow: 0 2px 10px #20408018;
  cursor: pointer;
  transition: background .18s, color .17s, transform .12s, box-shadow .15s;
  text-shadow: 1px 1px 0 #b38e2b0a;
}
.cta:hover, .btn:hover, button:hover, input[type=submit]:hover, input[type=button]:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px #f1c93a26;
  border-color: var(--primary);
}
.cta:active, .btn:active, button:active, input[type=submit]:active, input[type=button]:active {
  background: #FFE69D;
  color: #204080;
}
button:focus, .cta:focus { outline: 2px dotted var(--primary); }

/* LISTS & ICONS */
ul li, .text-section ul li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #5B4630;
}
ul li:before {
  content: '\25CF';
  position: absolute;
  left: 5px;
  color: var(--secondary);
  font-size: 1.12em;
  top: 0.13em;
}
.text-section ul li img, .content-wrapper ul li img {
  width: 21px; height: 21px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  filter: sepia(25%) hue-rotate(-20deg) contrast(1.07);
  margin-left: -24px;
}
ol {
  padding-left: 14px;
  margin-bottom: 18px;
  color: #362E1A;
}
ol li {
  padding-left: 6px !important;
  margin-bottom: 6px;
}

/* TESTIMONIALS */
.testimonial-card {
  color: #1c1410;
  background: #fff;
  box-shadow: 0 4px 16px #a17f5c24;
  border-left: 8px solid var(--secondary);
  border-radius: 17px 5px 17px 5px;
  font-size: 1.12rem;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 6px;
  text-shadow: 0 1px #f1c93a22;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px #20408028;
  border-color: #204080;
  transform: translateY(-3px) scale(1.03);
  transition: box-shadow .24s, border-color .17s;
}

.highlighted-tour {
  background: #ffe7b1;
  border-left: 6px solid var(--primary);
  border-radius: 7px;
  box-shadow: 0 2px 8px #20408010;
  padding: 18px 16px 12px 22px;
  margin-bottom: 22px;
}

/* FOOTER */
footer {
  background: #F1C93A;
  color: #204080;
  width: 100%;
  padding: 0;
  border-top: 2px solid #E5B358;
  box-shadow: 0 -4px 20px #a17f5c13;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px 10px 20px;
  gap: 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 0;
}
.footer-menu a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #204080;
  background: #FFF9E8;
  border-radius: 7px;
  font-size: 1.03rem;
  padding: 7px 13px;
  transition: background .14s, color .16s;
}
.footer-menu a:hover {
  background: #204080;
  color: #FFF9E8;
}
.footer-info {
  font-size: 0.97rem;
  color: #a17f5c;
  margin-top: 3px;
}

/* RESPONSIVE DESIGN: MOBILE-FIRST */
@media (max-width: 768px) {
  html {font-size: 15px;}
  section .container, .section { padding: 23px 6px;}
  .content-wrapper, .text-section, .guide-list, .testimonial-list, .feature-grid, .card-container { gap: 14px; }
  .feature-grid, .guide-list, .testimonial-slider, .testimonial-list, .customer-stories, .card-container, .logo-wall {
    flex-direction: column;
  }
  .feature-grid > div, .guide-list .text-section, .testimonial-card, .card {
    max-width: 100%; min-width: 0;
  }
  .logo-link img { width: 105px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 10px; padding: 15px 8px 9px 8px; }
  .footer-menu { gap: 8px; margin-bottom: 3px; }
  .mobile-menu { padding-top: 20px; }
  .mobile-nav { padding: 11px 13px; }
}
@media (max-width: 520px) {
  html {font-size: 14px;}
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.17rem; }
  footer .container, header .container { padding: 8px 3px; }
  .section, section .container { padding: 16px 2px; }
  nav a.cta, .cta, .btn, button { padding: 10px 10px; font-size: 1rem; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .guide-list .text-section, .feature-grid > div {
  transition: box-shadow .21s, transform .13s, border-color .14s;
}
.cta, .btn, button {
  transition: background .16s, color .16s, transform .13s;
}
.card:hover, .guide-list .text-section:hover, .feature-grid > div:hover {
  box-shadow: 0 12px 32px #20408023;
  transform: translateY(-3px) scale(1.035);
}

/* MODALS & BANNERS */
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #FFE69D;
  border-top: 3px solid #A17F5C;
  box-shadow: 0 -6px 24px #a17f5c29;
  padding: 20px 16px 20px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1.07rem;
  animation: cookie-fade-in 0.95s cubic-bezier(.16,.65,.75,1.03);
  transition: bottom 0.4s;
}
@keyframes cookie-fade-in {
  from { bottom: -150px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}
.cookie-banner__msg {
  color: #2c210c;
  flex: 1 1 auto;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.cookie-banner__buttons {
  display: flex;
  gap: 11px;
}
.cookie-banner__btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  background: #204080;
  color: #fff;
  border: 2px solid var(--secondary);
  padding: 8px 18px;
  border-radius: 7px;
  transition: background .16s, color .12s, border-color .13s;
  cursor: pointer;
  margin-right: 0;
}
.cookie-banner__btn:last-child {
  background: #fff6df;
  color: #204080;
  border-color: #A17F5C;
  margin-right: 0;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 8px;
    font-size: 1rem;
  }
  .cookie-banner__buttons { gap: 6px; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 100000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,64,128,0.14);
  display: flex;
  align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  pointer-events: none;
  transition: opacity .32s, visibility .01s;
}
.cookie-modal.is-active {
  visibility: visible; opacity: 1; pointer-events: auto;
}
.cookie-modal__dialog {
  background: #FFF9E8;
  border: 3px solid #A17F5C;
  border-radius: 16px;
  box-shadow: 0 8px 42px #20408021;
  max-width: 430px;
  width: 88vw;
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.07rem;
  animation: cookie-modal-pop .5s cubic-bezier(.31,.78,.41,1.37);
}
@keyframes cookie-modal-pop {
  from { transform: scale(0.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 5px;
}
.cookie-modal__title {
  font-size: 1.3rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #204080;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #204080;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 3px 12px;
  border-radius: 4px;
  transition: background .13s;
}
.cookie-modal__close:hover {
  background: #e5b35829;
}
.cookie-modal__body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-modal__item {
  background: #fff;
  border-radius: 7px;
  border-left: 4px solid #F1C93A;
  padding: 8px 7px 6px 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  font-size: 1.04em;
}
.cookie-modal__checkbox {
  accent-color: var(--primary);
  width: 1.15em; height: 1.15em;
}
.cookie-modal__desc {
  font-size: 0.96rem;
  color: #826f53;
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* RETRO DETAILS (decorative borders, etc) */
.section, .card, .testimonial-card, .highlighted-tour, .guide-list .text-section {
  border-style: solid;
  border-width: 2px;
  border-color: #EDD7B2;
  box-shadow: 0 2px 9px #a17f5c17;
}

/* PRINT OVERRIDE */
@media print {
  .cookie-banner, .cookie-modal, .mobile-menu, .mobile-menu-toggle { display:none !important; }
  header, nav, footer {
    background: none !important;
    box-shadow: none !important;
  }
  .card, .feature-grid > div, .section, .testimonial-card, .guide-list .text-section {
    box-shadow: none !important;
    border: 1px solid #A17F5C !important;
    background: #fff !important;
  }
}
