/* =========================
   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;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7FAFB;
  color: #22374A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.3em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
/* =============
   BRAND COLORS
   ============= */
:root {
  --primary: #25415A;
  --primary-alt: #22374A;
  --secondary: #A9C8E4;
  --background: #F7FAFB;
  --accent: #EF8B2D;
  --white: #FFFFFF;
  --neutral: #E9EEF3;
  --shadow: rgba(34,55,74,0.06);
  --text-main: #22374A;
  --text-subtle: #658095;
  --success: #447C51;
  --danger: #A33434;
}

/* =============
   TYPOGRAPHY
   ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary-alt);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li {
  color: var(--text-main);
  font-size: 1rem;
  letter-spacing: 0.01em;
}
p, ul, ol {
  margin-bottom: 16px;
}
.subtitle {
  color: var(--text-subtle);
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: var(--text-subtle);
}

/* =============
   GLOBAL LAYOUT
   ============= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============
   HEADER & NAV
   ============= */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
header img {
  height: 36px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 10px;
  color: var(--primary-alt);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 12px 26px;
  border-radius: 12px;
  box-shadow: 0 1px 6px var(--shadow);
  border: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin-left: 16px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d67820;
  box-shadow: 0 4px 18px var(--shadow);
  color: #fff3e6;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary-alt);
  cursor: pointer;
  display: none;
  padding: 0 14px;
  line-height: 1;
  z-index: 1003;
}

/* =============
   MOBILE NAVIGATION
   ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 55, 74, 0.96);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  margin: 18px 16px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2002;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 42px 0 0 32px;
  width: 85vw;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  padding: 12px 0;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(239, 139, 45, 0.07);
}

@media (max-width: 940px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 8px;
  }
}

/* =============
   HERO SECTION
   ============= */
.hero {
  background: var(--secondary);
  border-radius: 0 0 32px 32px;
  padding: 64px 0 36px 0;
  box-shadow: 0 6px 24px var(--shadow);
  margin-bottom: 44px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 12px;
  text-align: center;
}

/* =============
   FLEX SPACING & CARDS
   ============= */
.feature-grid, .destination-grid, .culture-events-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 26px var(--shadow);
  transform: translateY(-3px) scale(1.02);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 220px;
  background: var(--neutral);
  border-radius: 14px;
  padding: 26px 20px;
  transition: box-shadow 0.15s, background 0.15s;
  box-shadow: 0 1px 4px var(--shadow);
  margin-bottom: 20px;
}
.feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-bottom: 6px;
}
.feature-item:hover {
  background: #e3effa;
  box-shadow: 0 4px 18px var(--shadow);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.destination-grid {
  gap: 24px;
  justify-content: flex-start;
}
.destination-item {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, background 0.18s;
}
.destination-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.destination-item:hover {
  background: var(--secondary);
  box-shadow: 0 6px 24px var(--shadow);
}
.culture-events-grid {
  gap: 24px;
  flex-wrap: wrap;
}
.culture-events-grid > div {
  background: var(--neutral);
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
@media (max-width: 1020px) {
  .feature-grid, .content-grid, .destination-grid, .culture-events-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============
   FLEX LAYOUTS (MANDATORY)
   ============= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =============
   SERVICE/ITEM LISTS
   ============= */
.service-list,
.experience-trip-list,
.booking-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  list-style: none;
}
.service-list li,
.experience-trip-list li,
.booking-benefits-list li {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--neutral);
  font-size: 1.1rem;
  color: var(--primary-alt);
  display: flex;
  flex-direction: column;
}
.service-list li strong,
.experience-trip-list li strong {
  color: var(--accent);
}
@media (max-width: 900px) {
  .service-list, .experience-trip-list, .booking-benefits-list {
    gap: 14px;
  }
  .service-list li, .experience-trip-list li, .booking-benefits-list li {
    font-size: 1rem;
    padding: 12px 8px 12px 0;
  }
}

/* =============
   TESTIMONIALS
   ============= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f4f7fa;
  border-radius: 14px;
  box-shadow: 0 1px 9px var(--shadow);
  padding: 20px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #22374A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin: 0;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--text-subtle);
  font-size: 1rem;
  margin-left: auto;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px var(--shadow);
}

/* ===========
   CONTACT + ICONS
   =========== */
.contact-details {
  background: var(--neutral);
  border-radius: 11px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.contact-details ul {
  list-style: none;
  gap: 10px;
}
.contact-details li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.icon-list {
  display: flex;
  gap: 18px;
  margin: 16px 0 0 0;
}
.icon-list img {
  width: 36px;
  height: 36px;
  opacity: 0.88;
}

/* =============
   FOOTER
   ============= */
footer {
  background: var(--white);
  border-top: 1.5px solid var(--neutral);
  width: 100%;
  padding: 28px 0;
  margin-top: 40px;
  box-shadow: 0 -2px 12px var(--shadow);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--primary-alt);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.85;
  transition: color 0.15s, opacity 0.16s;
  border-radius: 7px;
  padding: 4px 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
  background: var(--secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--text-subtle);
}
.footer-brand img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
}

/* ================
   COOKIE BANNER
   ================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--text-main);
  box-shadow: 0 6px 32px rgba(34,55,74,0.13);
  border-radius: 18px;
  padding: 26px 26px 22px 26px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 290px;
  max-width: 98vw;
  animation: cookie-banner-fade-in 0.44s cubic-bezier(.66,.02,.49,1.29) both;
  box-sizing: border-box;
}
@keyframes cookie-banner-fade-in {
  from { opacity: 0; transform: translateX(-50%) translateY(22px) scale(.94); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.cookie-banner strong {
  color: var(--primary-alt);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 9px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: var(--neutral);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 1px 6px var(--shadow);
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #d67820;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary-alt);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #c3d8ec;
}
.cookie-btn.reject {
  background: #ef8b2d22;
  color: var(--danger);
  border: 1px solid #ef8b2d40;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe9c0;
}

/* == COOKIE MODAL == */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3300;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,55,74,0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary-alt);
  border-radius: 17px;
  box-shadow: 0 9px 60px rgba(34,55,74,.19);
  max-width: 450px;
  width: 98vw;
  padding: 34px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.37s cubic-bezier(.75,-0.05,.29,1.19) both;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.29rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--secondary);
  border-radius: 12px;
  position: relative;
  outline: none !important;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 1px 4px var(--shadow);
  margin-right: 4px;
}
.cookie-modal .toggle-switch:checked {
  background: var(--accent);
}
.cookie-modal .toggle-switch:disabled {
  background: #bbb;
  cursor: not-allowed;
}
.cookie-modal .toggle-switch:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .toggle-switch:checked:after {
  left: 20px;
}
.cookie-modal .category-label {
  font-weight: 500;
}
.cookie-modal .category-desc {
  color: var(--text-subtle);
  font-size: 0.98rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

/* ===========
   RESPONSIVE
   =========== */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 34px 0 28px 0;
    margin-bottom: 24px;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .content-wrapper {
    gap: 8px;
    padding: 0 2px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .feature-grid, .destination-grid, .culture-events-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .destination-item, .culture-events-grid > div {
    min-width: 0;
    flex: 1 1 100%;
    padding: 18px 12px;
  }
  .card {
    padding: 16px 12px;
  }
  .footer-nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  footer .container{
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 8px;
    font-size: 1rem;
  }
  .cookie-banner {
    max-width: 99vw;
    left: 2vw;
    transform: none;
    min-width: unset;
    padding: 14px 10px 14px 13px;
  }
}

@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .hero {
    padding: 22px 0 12px 0;
    margin-bottom: 8px;
  }
  .section {
    margin-bottom: 20px;
    padding: 12px 2px;
    border-radius: 10px;
  }
}

/* ===============
   FORMS (future proof)
   =============== */
input, textarea, select {
  font-family: inherit;
  border: 1px solid var(--neutral);
  border-radius: 8px;
  padding: 12px 11px;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #F7FAFB;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 2px 6px var(--shadow);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--primary-alt);
}
button, .cta-btn {
  cursor: pointer;
  outline: none;
}

/* ===============
   MICRO-INTERACTIONS (buttons, cards...)
   =============== */
button, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
.card:hover, .feature-item:hover, .destination-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 7px 34px var(--shadow);
}
.cta-btn:active, .cookie-btn:active, button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 12px var(--shadow);
}

/* ===============
   MISC
   =============== */
.text-section {
  margin-bottom: 18px;
  color: var(--text-main);
}
.region-filter p {
  font-size: 1rem;
  color: var(--primary-alt);
  background: var(--neutral);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 18px;
}

::-webkit-input-placeholder { color: var(--text-subtle); }
::-moz-placeholder { color: var(--text-subtle); }
:-ms-input-placeholder { color: var(--text-subtle); }
::placeholder { color: var(--text-subtle); }

hr {
  border: none;
  border-top: 1px solid var(--neutral);
  margin: 32px 0;
}

/* =======================
   SCANDINAVIAN CLEAN FINISH
   ======================= */
body {
  background: var(--background);
}
.section, .card, .feature-item, .destination-item, .testimonial-card, .culture-events-grid > div {
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 14px;
  background: var(--white);
}

/* Remove blue tap highlight for touch */
input, textarea, button { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* Accessibility: High contrast in testimonials */
.testimonial-card p, .testimonial-meta {
  color: #22374A;
}
