/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FAFAF7;
  color: #24324D;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #B6955B;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B365D;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.6em;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 0.4em;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 0.3em;
  font-weight: 600;
}
p, .subheadline {
  font-size: 1.06rem;
  margin-bottom: 1.35em;
}
.subheadline {
  color: #4B576A;
  font-weight: 500;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
section {
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  margin-top: 16px;
}

/* --- SPACING UTILITIES & FLEX CONTAINERS (Mandatory Patterns) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(27,54,93,0.035);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
  min-width: 220px;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(27,54,93,0.10);
  transform: translateY(-2px) scale(1.012);
}
.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;
  background: #F6F4EF;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(34,47,66,0.06);
  padding: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 220px;
  color: #1A1E23;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 rgba(27,54,93,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 1px 10px 0 rgba(30,38,49,0.045);
  min-width: 195px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-item:hover {
  box-shadow: 0 4px 20px 0 rgba(27,54,93,0.09);
  transform: translateY(-2px) scale(1.008);
}

/* --- HEADER --- */
header {
  background: #FFFFFF;
  border-bottom: 1.5px solid #E7E5DE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 11px 0;
  position: relative;
  z-index: 50;
}
header img {
  width: 185px;
  height: auto;
  padding: 0 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 10px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: none;
  font-weight: 500;
  font-size: 1.06rem;
  padding: 6px 12px;
  border-radius: 6px;
  color: #1B365D;
  transition: background 0.17s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #F6F4EF;
  color: #B6955B;
}
.mobile-menu-toggle {
  display: none;
  background: #1B365D;
  color: #fff;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 1.5rem;
  margin-left: 17px;
  transition: background 0.15s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #B6955B;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 32px rgba(27,54,93,0.14);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.6,.35,0,1); 
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 30px 30px 25px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #1B365D;
  font-size: 1.7rem;
  border-radius: 5px;
  padding: 4px 9px 4px 0;
  margin-bottom: 21px;
  align-self: flex-end;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6F4EF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B365D;
  font-weight: 600;
  font-size: 1.22rem;
  border-radius: 7px;
  padding: 13px 14px 10px 5px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B6955B;
  background: #F6F4EF;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #E5D3B3;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 1px 12px rgba(30,38,49,0.041);
  margin-bottom: 45px;
  padding: 44px 0 36px 0;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.hero .container {  display: flex;  }
.hero .content-wrapper {
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.hero h1 {
  color: #1B365D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -1.3px;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.18rem;
  margin-bottom: 24px;
}

/* --- BUTTONS & CTA --- */
.cta-button {
  display: inline-block;
  background: #1B365D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  padding: 13px 34px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  box-shadow: 0 2px 12px rgba(27,54,93,0.08);
  cursor: pointer;
  border: none;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #B6955B;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(27,54,93,0.15);
}

/* --- FEATURE GRID & ITEMS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 5px 0;
}
.feature-item img {
  width: 42px;
  height: 42px;
  filter: grayscale(0.2) saturate(0.8);
}
.feature-item h3 {
  font-size: 1.19rem;
  color: #1B365D;
}

/* --- TIMELINE --- */
.timeline {
  margin: 42px 0 15px 0;
  background: #F6F4EF;
  padding: 18px 15px 18px 32px;
  border-radius: 8px;
  border-left: 6px solid #B6955B;
  box-shadow: 0 1px 7px rgba(30,38,49,0.04);
}
.timeline h4 {
  color: #1B365D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 11px;
}
.timeline ul {
  margin-left: 0;
  padding-left: 0;
}
.timeline li {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.testimonial-details {
  font-size: 1.01rem;
  color: #4B576A;
  margin-top: 0.8em;
  font-weight: 500;
}
.star-rating {
  margin-left: 0;
  color: #B6955B;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1.8px;
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(30,38,49,0.042);
  padding: 45px 26px 40px 26px;
  margin-bottom: 36px;
  margin-top: 22px;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1.5px solid #E7E5DE;
  padding: 28px 0 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 2px;
}
.footer-nav a {
  font-size: 1rem;
  color: #445077;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 2px 7px;
  border-radius: 4px;
  transition: background 0.15s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B6955B;
  background: #F6F4EF;
}
.footer-contact {
  color: #7C7F86;
  font-size: 0.97rem;
}

/* --- SECTION AND CARD SPACING (MANDATORY) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid, .testimonial-list {
  gap: 20px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* --- EDITOR PICK / BLOG --- */
.editor-pick {
  background: #F6F4EF;
  color: #1B365D;
  border-left: 5px solid #B6955B;
  border-radius: 8px;
  margin-top: 26px;
  padding: 17px 18px;
  font-size: 1.06rem;
  font-style: italic;
}

/* --- TOUR HIGHLIGHTS --- */
.tour-highlights {
  background: #F6F4EF;
  border-radius: 7px;
  padding: 18px 18px 15px 24px;
  margin: 21px 0 14px 0;
  border-left: 4px solid #A4854A;
  font-size: 1rem;
}

/* --- CONTACT & OPENING HOURS ICONS --- */
.opening-hours {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
}

/* --- GENERAL FORM ELEMENTS (not in HTML, future proof) --- */
input, select, textarea {
  font-family: inherit;
  border: 1px solid #E7E5DE;
  border-radius: 8px;
  background: #fff;
  padding: 11px 13px;
  font-size: 1.1rem;
  color: #24324D;
  margin-bottom: 16px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #B6955B;
  outline: none;
  background: #FAF9F6;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff7ed;
  color: #24324D;
  box-shadow: 0 -2px 20px 0 rgba(27,54,93,0.08);
  padding: 28px 4vw 24px 4vw;
  z-index: 10100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s, transform 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  max-width: 620px;
  font-size: 1.01rem;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #1B365D;
  color: #fff;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 8px 23px;
  box-shadow: 0 2px 12px rgba(27,54,93,0.07);
  margin: 0;
  transition: background 0.13s, color 0.13s, transform 0.15s;
}
.cookie-banner button.cookie-reject {
  background: #A4854A;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #1B365D;
  border: 1.5px solid #B6955B;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #B6955B;
  color: #fff;
  transform: translateY(-1px) scale(1.045);
}
.cookie-modal {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 11000;
  background: rgba(34,44,59,0.30);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 40px 0 rgba(30,38,49,0.13);
  padding: 36px 27px 29px 27px;
  max-width: 415px;
  min-width: 282px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadein-modal 0.33s;
}
@keyframes fadein-modal {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #1B365D;
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-inner .close-btn {
  background: #E5D3B3;
  color: #1B365D;
  border-radius: 5px;
  padding: 5px 15px;
  font-weight: 600;
  margin-right: 8px;
}

/* --- RESPONSIVENESS (Mobile-First + Breakpoints) --- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .timeline {
    padding-left: 13px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.53rem;
  }
  .hero {
    padding: 32px 0 23px 0;
    min-height: 120px;
    border-radius: 0 0 18px 18px;
  }
  .container, section {
    padding: 0 4vw;
  }
  .section {
    padding: 28px 4vw;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-grid, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }
  .editor-pick,
  .tour-highlights,
  .timeline,
  .testimonial-card,
  .feature-item,
  .card {
    padding-right: 8vw;
    padding-left: 8vw;
  }
}
@media (max-width: 500px) {
  .hero .content-wrapper, .hero .container {
    padding: 0;
  }
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .card, .testimonial-card, .feature-item {
    min-width: 0;
    padding: 16px 8px;
  }
  .cookie-banner, .section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* --- SCANDINAVIAN MICRO-INTERACTIONS / EFFECTS --- */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.15s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  box-shadow: 0 2px 8px 0 rgba(27,54,93,0.07);
  transform: translateY(1px) scale(0.99);
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #1B365D;
  outline-offset: 2px;
}
.testimonial-card, .testimonial-list, .testimonial-card p, .testimonial-details, .star-rating {
  color: #1A1E23;
}

/* --- VISUAL HIERARCHY --- */
h1 {
  margin-top: 0.25em;
  margin-bottom: 0.2em;
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.18rem;
}
h4 { font-size: 1.08rem; }

/* --- HIDE UNNECESSARY SCROLL/OVERFLOWS --- */
body, html {
  overflow-x: hidden;
}
.mobile-menu {
  overflow-y: auto;
  max-height: 100vh;
}

/* --- BRAND COLOR HELPERS --- */
.bg-primary { background: #1B365D; color: #fff; }
.bg-accent { background: #B6955B; color: #fff; }
.bg-secondary { background: #E5D3B3; color: #1B365D; }

/* --- HELPERS FOR FLEX --- */
.flex-row { display: flex; flex-direction: row; gap: 16px; }
.flex-col { display: flex; flex-direction: column; gap: 16px; }

/* --- END OF STYLE.CSS --- */
