/* ========== CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f7faf9;
  color: #264d39;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ========== BRAND STYLE VARIABLES ========== */
:root {
  --primary: #264d39;
  --secondary: #a8cabb;
  --accent: #f0ece2;
  --pastel-green: #e2f2e9;
  --pastel-pink: #ffe5ec;
  --pastel-blue: #e6eeff;
  --pastel-yellow: #fff7e2;
  --pastel-lilac: #ebe4ff;
  --header-bg: #f7faf9;
  --shadow-md: 0 4px 24px 0 rgba(166,195,181,0.08);
  --shadow-sm: 0 2px 8px 0 rgba(166,195,181,0.10);
  --radius-soft: 18px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

@import url('https://fonts.googleapis.com/css?family=Merriweather:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  margin-bottom: 12px;
}
h1 { font-size: 2rem; letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 15px; }
h3 { font-size: 1.13rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, li {
  font-size: 1rem;
  color: #314e39;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 600;
}
a {
  color: var(--primary);
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ========== FLEXBOX UTILITY CLASSES ========== */
.card-container, .highlight-cards, .city-overview-grid, .feature-grid, .feature-list, .card-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
}
.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: 20px;
  background: #fffbe7;
  color: #264d39;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e2f2e9;
  padding: 24px;
  border-radius: var(--radius-soft);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), background var(--transition);
}
.feature-item:hover, .feature-item:focus {
  background: #f0ece2;
  box-shadow: 0 8px 24px 0 rgba(38,77,57,0.08);
}

/* Highlight and City Cards */
.highlight-card, .city-card {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 210px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover, .city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px 0 rgba(38, 77, 57, 0.10);
}

/****** HEADER ******/
header {
  background: var(--header-bg);
  box-shadow: 0 2px 12px 0 rgba(38,77,57,0.03);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-green);
  color: var(--primary);
}
.cta-primary {
  background: linear-gradient(90deg, #a8cabb 5%, #e2f2e9 95%);
  color: var(--primary);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  letter-spacing: .01em;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(168,202,187,0.08);
  cursor: pointer;
  margin-left: 16px;
  transition: background var(--transition), color var(--transition), box-shadow .2s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--pastel-yellow);
  color: var(--primary);
  box-shadow: 0 6px 20px 0 rgba(38,77,57,0.10);
}

/* ========== MOBILE BURGER MENU ========== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  background: var(--pastel-green);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-left: 14px;
  transition: background .18s;
  z-index: 1201;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: var(--secondary); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(240,236,226,0.98);
  box-shadow: 0 8px 32px 0 rgba(38,77,57,0.12);
  z-index: 2000;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.34,.84,.42,1);
  overflow-y: auto;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  margin: 16px 28px 0 20px;
  align-self: flex-start;
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  border: none;
  transition: background .16s;
  cursor: pointer;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--pastel-pink); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-left: 30px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background .15s, color var(--transition);
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--secondary);
}

@media (max-width: 1024px) {
  header nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 768px) {
  .container { max-width: 99vw; padding-left: 10px; padding-right: 10px; }
}

/* ========== HERO / MAIN SECTIONS ========== */
.hero {
  min-height: 60vh;
  background: linear-gradient(120deg, #e2f2e9 60%, #e6eeff 100%);
  border-radius: var(--radius-soft);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 520px;
  padding: 32px 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.15rem;
  color: #355646;
  margin-bottom: 6px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #264d39;
  font-family: 'Merriweather', serif;
  margin-bottom: 12px;
}
.testimonial-card span {
  font-size: .98rem;
  color: #496d57;
  font-family: 'Roboto', sans-serif;
}

/* ========== FOOTER ========== */
footer {
  background: #e6eeff;
  border-top-left-radius: var(--radius-soft);
  border-top-right-radius: var(--radius-soft);
  margin-top: 60px;
  padding: 28px 0 8px 0;
  box-shadow: 0 -2px 16px 0 rgba(168,202,187,0.07);
  color: var(--primary);
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #264d39;
  font-size: 1rem;
  padding: 2px 0;
  transition: color .17s;
}
footer nav a:hover {
  color: #879497;
}
.footer-contact p {
  color: #496d57;
  font-size: .98rem;
  margin-bottom: 3px;
}
.footer-contact a { color: #355646; text-decoration: underline; }
.footer-contact a:hover { color: #6ca588; }

/****** CARDS, FAQ, ACCORDIONS ******/
.faq-accordion h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  cursor: pointer;
  background: var(--pastel-lilac);
  padding: 10px 18px;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  transition: background .12s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  background: #e2f2e9;
}
.faq-answer {
  background: var(--accent);
  color: #264d39;
  padding: 14px 22px 16px 26px;
  border-radius: var(--radius-soft);
  margin-bottom: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(168,202,187,0.04);
  border-left: 5px solid var(--secondary);
  display: none;
}
.faq-accordion h3.active + .faq-answer {
  display: block;
}

/****** CITY OVERVIEW ******/
.city-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.city-card {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  min-width: 200px;
  max-width: 290px;
  flex: 1 1 200px;
}

/****** HIGHLIGHTED ATTRACTIONS/INFO-BOXES ******/
.highlighted-attractions, .route-highlights, .visitor-information, .info-box {
  background: #e6eeff;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 16px 0 rgba(168,202,187,0.09);
  padding: 14px 26px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.info-box {
  background: var(--pastel-yellow);
}

/****** MAP BLOCK IN CONTACT ******/
.map-block {
  background: var(--pastel-green);
  border-radius: var(--radius-soft);
  padding: 14px 18px;
  margin-top: 10px;
  color: #33573b;
  font-size: 1rem;
  box-shadow: 0 1px 5px 0 rgba(168,202,187,0.06);
}

/****** TEXT SECTION ******/
.text-section {
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 8px 0 rgba(38,77,57,0.04);
  padding: 26px 22px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
  margin-top: 4px;
  padding-left: 20px;
}
.text-section li {
  margin-bottom: 6px;
}

/****** BUTTONS ******/
button, .btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  padding: 10px 28px;
  color: var(--primary);
  background: var(--pastel-green);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background .18s, color .12s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--secondary);
  color: var(--primary);
}

/****** COOKIE CONSENT BANNER ******/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -4px 32px 0 rgba(168,202,187,0.09);
  color: #264d39;
  padding: 22px 20px 18px 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookie-slide-in .6s cubic-bezier(.38,.77,.17,1);
}
.cookie-banner .cookie-banner-content {
  max-width: 950px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@keyframes cookie-slide-in {
  0% { transform: translateY(90px); opacity: 0; }
  90% { opacity:0.94; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-banner [type="button"] {
  font-size: 1rem;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  transition: background .18s, color .12s;
  background: var(--pastel-green);
  color: var(--primary);
  border: 1px solid #a8cabb22;
}
.cookie-banner [type="button"].accept {
  background: linear-gradient(90deg, #a8cabb 5%, #e2f2e9 95%);
  color: var(--primary);
}
.cookie-banner [type="button"].reject {
  background: var(--pastel-pink);
  color: #c05656;
}
.cookie-banner [type="button"].accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner [type="button"].reject:hover {
  background: #ffd6db;
  color: #822;
}
.cookie-banner [type="button"].settings {
  background: var(--pastel-yellow);
  color: #52653c;
}
.cookie-banner [type="button"].settings:hover {
  background: #ffe6b0;
  color: #453a00;
}

/****** COOKIE MODAL ******/
#cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 3500;
  background: rgba(168,202,187,0.27);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fffbe7;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 42px 0 rgba(168,202,187,0.13);
  max-width: 480px;
  min-width: 260px;
  padding: 32px 26px 24px 26px;
  color: #264d39;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-modal-appear .4s cubic-bezier(.45,.68,.13,1);
}
@keyframes cookie-modal-appear {
  0% { transform: scale(0.98) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0px); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 6px;
}
.cookie-modal-header h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.cookie-modal-close {
  font-size: 1.5rem;
  background: var(--pastel-pink);
  border-radius: var(--radius-pill);
  padding: 3px 11px;
  border: none;
  transition: background .16s;
  color: #8e355a;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #ffd6db; }
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #264d39;
}
.cookie-category .always-on {
  font-size: .98rem;
  color: #8e948f;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

/****** RESPONSIVE ========== ******/
@media (max-width: 900px) {
  .feature-item, .testimonial-card, .highlight-card, .city-card {
    min-width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .container { max-width: 96vw; }
  .card-container, .highlight-cards, .feature-grid, .city-overview-grid, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .footer-contact,
  .footer nav,
  .footer .logo {
    margin-bottom: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 40vh;
    padding: 10px 0;
    border-radius: 0;
  }
  .section, section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .cookie-banner-content,
  .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .cta-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media (max-width: 650px) {
  .content-wrapper, .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}

/****** MICRO-INTERACTIONS ******/
.feature-item img, .testimonial-card img, .city-card img, .highlight-card img {
  transition: transform .18s;
}
.feature-item:hover img,
.city-card:hover img,
.highlight-card:hover img {
  transform: scale(1.08) rotate(-1.5deg);
}

/****** GENERAL TYPOGRAPHY & SPACING ******/
section h2, section h3 {
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0 !important;
}

/****** MISC. ******/
::-webkit-input-placeholder { color: #adb5bd; }
::-moz-placeholder { color: #adb5bd; }
:-ms-input-placeholder { color: #adb5bd; }
::placeholder { color: #adb5bd; }

/* Force only flex, never use grid, never use columns */
/* All layout containers are flex-based! */

/****** Z-INDEX MANAGEMENT ******/
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
#cookie-modal { z-index: 3500; }

/****** PRINT IMPROVEMENTS ******/
@media print {
  header, footer, .cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
  .container, section, main { padding: 0 !important; margin: 0 !important; }
}
