/* ============================================================================
   CSS RESET & BASELINE 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;
}
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #21242A;
  background: #FFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
/* ============================================================================
   BRAND COLORS & FONTS (with fallbacks)
============================================================================ */
:root {
  --primary: #234099;
  --secondary: #D2E0F7;
  --accent: #FFD500;
  --white: #fff;
  --black: #21242A;
  --grey: #F3F5FA;
  --shadow: 0 4px 24px 0 rgba(35, 64, 153, 0.09),0 1.5px 4px 0 rgba(35,64,153,0.03);
  --radius: 20px;
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ============================================================================
   TYPOGRAPHY SCALE & STYLES
============================================================================ */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
p, li, blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 14px;
}
blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  background: var(--secondary);
  padding: 16px 20px 16px 24px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}
a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}
a.cta-button {
  text-decoration: none;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
/* ============================================================================
   CONTAINER & LAYOUT SYSTEM
============================================================================ */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
/* Spacing & Section Rules */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 250px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(35,64,153,0.07);
  margin-bottom: 20px;
  flex-direction: row;
  width: 100%;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 1.5px 8px 0 rgba(35,64,153,0.06);
  position: relative;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  height: 76px;
  padding: 14px 0 14px 0;
  margin-right: 30px;
  transition: opacity .15s;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  min-height: 80px;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .2px;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--black);
}
.cta-button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 30px;
  border: none;
  border-radius: 16px;
  transition: box-shadow .18s, background .2s, color .2s;
  box-shadow: 0 6px 24px 0 rgba(255, 213, 0, 0.09);
  margin-left: 18px;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px 0 rgba(35,64,153,.19), 0 1.5px 8px 0 rgba(35,64,153,0.03);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: var(--primary);
  padding: 10px;
  margin-left: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 99;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,153,0.97);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.53,.19,.33,1);
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: var(--accent);
  border: none;
  padding: 24px 30px 10px 0;
  cursor: pointer;
  font-weight: 800;
  align-self: flex-end;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 36px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  background: transparent;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1100px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 10px;
  }
  .cta-button {
    padding: 10px 16px;
    font-size: .98rem;
  }
}
/* Show burger, hide normal nav on mobile */
@media (max-width: 900px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .logo {
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Prevent unintentional header overlap */
@media (max-width: 900px) {
  header {
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 68px;
  }
}
/* ============================================================================
   HERO + FEATURES SECTIONS
============================================================================ */
.hero {
  background: linear-gradient(95deg, var(--secondary) 55%, var(--white) 100%);
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 20px 0 rgba(35,64,153,0.03);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-weight: 900;
}
.hero p {
  font-size: 1.18rem;
  color: var(--black);
  margin-bottom: 24px;
}
.hero .cta-button {
  margin-top: 10px;
}
@media (max-width: 600px){
  .hero {
    padding: 30px 0 38px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
.features {
  background: var(--grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.features h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}
/* Feature Grids (icons+titel+text) */
.feature-grid, .tips-list, .route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 14px;
  margin-bottom: 16px;
  width: 100%;
}
.feature-grid > li, .tips-list > li, .route-list > li {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 18px 18px 18px;
  transition: box-shadow .19s, transform .16s;
  margin-bottom: 12px;
  border: 2.5px solid transparent;
}
.feature-grid > li:hover, .tips-list > li:hover, .route-list > li:hover {
  box-shadow: 0 10px 32px 0 rgba(35,64,153,.18);
  transform: translateY(-2px) scale(1.025);
  border-color: var(--accent);
}
.feature-grid img, .tips-list img, .route-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.route-list > li strong { color: var(--primary); }
.tips-list > li strong { color: var(--primary); }
.tips-descriptions, .route-overviews {
  margin: 18px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  color: var(--black);
}
/* Fact boxes & photo tips */
.fact-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0 6px 0;
}
.fact-box {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 16px;
  padding: 18px 30px;
  font-size: 1.12rem;
  margin-bottom: 10px;
  box-shadow: 0 1.5px 6px 0 rgba(35,64,153,0.06);
  display: flex;
  align-items: center;
}
.highlighted-attractions ul {
  margin-top: 8px;
  margin-bottom: 12px;
  padding-left: 12px;
}
.highlighted-attractions li {
  list-style: disc inside;
  color: var(--primary);
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.photo-tips {
  background: var(--secondary);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 16px 18px 16px 24px;
  margin: 18px 0 0 0;
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
}
@media (max-width: 800px) {
  .feature-grid, .tips-list, .route-list, .fact-boxes {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .fact-box {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

/* ============================================================================
   TESTIMONIALS/REVIEWS
============================================================================ */
.testimonials {
  background: var(--white);
}
.testimonials h2 {
  color: var(--primary);
}
.testimonial-card {
  background: var(--secondary);
  color: var(--black);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(35,64,153,0.06);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  font-size: 1.04rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: box-shadow .18s, background .16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #f7faff;
  box-shadow: 0 8px 32px 0 rgba(35,64,153,0.13);
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  border-left: 4px solid var(--accent);
  background: none;
  color: var(--primary);
  border-radius: 0;
  font-style: italic;
  padding: 0 0 0 16px;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}
@media (max-width: 690px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 10px;
  }
}

/* ============================================================================
   ABOUT, CONTACT, ETC.
============================================================================ */
.about, .contact, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-info, .contact-info-short {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info li, .contact-info-short li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.contact-info img, .contact-info-short img {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .about, .contact, .section {
    padding: 22px 8px;
  }
  .contact-info, .contact-info-short {
    padding-left: 4px;
  }
}

/* ============================================================================
   GENERIC CARDS (for all page box/grid items)
============================================================================ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(35,64,153,0.12);
  transform: translateY(-2px) scale(1.024);
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 20px 18px 20px;
  margin-top: 50px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -6px 28px 0 rgba(35,64,153,0.12);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-menu a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .16s, color .16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .97rem;
  color: var(--white);
  opacity: 0.95;
}
@media (max-width: 600px) {
  .footer-menu {
    gap: 8px;
  }
  .footer-contact {
    font-size: 0.88rem;
    text-align: center;
    flex-direction: column;
  }
  footer {
    padding: 20px 8px 10px 8px;
    border-radius: 20px 20px 0 0;
  }
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
============================================================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -4px 20px rgba(35,64,153,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .26s, transform .34s;
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  justify-content: center;
  width: 100%;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 10px 32px;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 8px 0 rgba(35,64,153,0.06);
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--white);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-consent-banner p {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1600;
  top: 0; left:0; right: 0; bottom: 0;
  background: rgba(33,36,42,0.75);
  width: 100vw; height: 100vh;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 10px 60px 0 rgba(35,64,153,0.23);
  padding: 32px 24px 24px 24px;
  max-width: 420px;
  width: 90vw;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal .30s cubic-bezier(.55,1.23,.45,1) forwards;
  position: relative;
}
@keyframes cookie-modal {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.39rem;
  font-family: var(--font-display);
  font-weight: 800;
}
.cookie-modal-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--grey);
  padding: 16px 10px;
  border-radius: 10px;
  margin-bottom: 0;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 22px;
  border-radius: 14px;
  background: var(--secondary);
  outline: none;
  transition: background .13s;
  cursor: pointer;
  position: relative;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: var(--accent);
}
.cookie-toggle input[type="checkbox"]:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  transition: left .17s, background .14s;
}
.cookie-toggle input[type="checkbox"]:checked:after {
  left: 17px;
  background: var(--accent);
}
.cookie-modal-btn-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  color: var(--primary);
  font-size: 1.6rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--accent);
}

/* ============================================================================
   RESPONSIVE RULES (MOBILE-FIRST)
============================================================================ */
@media (max-width: 768px) {
  .content-wrapper,
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.29rem;
  }
  h3, .h3 {
    font-size: 1.07rem;
  }
  .section, section {
    padding: 26px 6px;
    margin-bottom: 35px;
  }
  .card, .feature-grid > li, .tips-list > li, .route-list > li {
    padding: 16px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid, .fact-boxes, .card-container {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero {
    border-radius: 0 0 10px 10px;
    padding-bottom: 15px;
  }
  .section, section {
    border-radius: 0;
    padding: 16px 2px;
  }
}

/* ============================================================================
   MICRO-ANIMATIONS & INTERACTIONS
============================================================================ */
a, .cta-button, .main-nav a, .footer-menu a, .cookie-btn {
  transition: var(--transition);
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.97);
}
.feature-grid > li:active, .tips-list > li:active, .route-list > li:active {
  transform: scale(0.96);
}

::-webkit-scrollbar {
  width: 9px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

/* ============================================================================
   PRINT SUPPORT (MONO-STYLING)
============================================================================ */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container {
    max-width: 100% !important;
  }
}
