/* ===== 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 {
  scroll-behavior: smooth;
  background: #F5F5F3;
}
body {
  line-height: 1.5;
  background: #F5F5F3;
  color: #1B2734;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* ===== VARIABLE FALLBACKS ===== */
:root {
  --color-primary: #284B63;
  --color-primary-dark: #1B2734;
  --color-secondary: #F1B24A;
  --color-secondary-dark: #be822c;
  --color-accent: #F5F5F3;
  --color-white: #fff;
  --color-black: #171717;
  --color-electric-blue: #007CF0;
  --color-hot-pink: #FF156D;
  --color-bright-green: #19E37C;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-main: 0 4px 18px 0 rgba(40,75,99,0.18);
  --shadow-card: 0 2px 14px 0 rgba(241,178,74,0.16);
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  color: var(--color-primary-dark);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
small {
  font-size: 0.92rem;
}
strong {
  font-weight: 700;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
  transition: box-shadow 0.25s;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(241,178,74,0.22), 0 1.5px 10px 0 rgba(40,75,99,0.15);
  transform: translateY(-3px) scale(1.01);
}
.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(--color-white);
  box-shadow: 0 3px 22px 2px rgba(40,75,99,0.10);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  min-width: 220px;
  max-width: 520px;
  transition: box-shadow 0.20s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 1px var(--color-secondary);
  transform: scale(1.02) translateY(-4px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.team-intro {
  margin-top: 12px;
  margin-bottom: 18px;
  background: #fff6e7;
  border-radius: var(--radius-md);
  padding: 18px 18px 10px 18px;
  box-shadow: 0 2px 8px 0 rgba(241,178,74,0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(94deg, var(--color-secondary) 82%, var(--color-electric-blue) 120%);
  color: var(--color-black);
  position: relative;
  padding: 55px 0 45px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 30px 0 rgba(245,181,74,0.13);
  margin-bottom: 44px;
}
.hero h1,
.hero p {
  color: var(--color-primary);
}

/* ===== NAVIGATION ===== */
header {
  width: 100%;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-secondary);
  padding: 0 18px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 103;
}
header a img {
  height: 42px;
  margin-right: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
header .cta-primary {
  margin-left: 14px;
  color: var(--color-white);
  background: var(--color-electric-blue);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 1.12rem;
  box-shadow: 0 2px 8px 0 rgba(0,124,240,0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  font-weight: 900;
  letter-spacing: 0.01em;
}
header .cta-primary:hover, header .cta-primary:focus {
  background: var(--color-hot-pink);
  color: var(--color-white);
  box-shadow: 0 7px 22px 0 rgba(255,21,109,0.14);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  font-size: 2.1rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-left: 18px;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-electric-blue);
  color: var(--color-white);
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 350px;
  background: var(--color-accent);
  box-shadow: -8px 0 32px 5px rgba(40,75,99,0.22);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.92,-0.01,.2,1);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  padding: 36px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 16px;
  background: var(--color-hot-pink);
  color: var(--color-white);
  font-size: 2rem;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1110;
  border: none;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--color-electric-blue); color: #fff; }

.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  color: var(--color-primary);
  width: 100%;
  padding: 14px 8px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* ===== BUTTONS ===== */
.cta-primary {
  background: var(--color-electric-blue);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 12px 26px;
  margin-top: 18px;
  font-size: 1.16rem;
  box-shadow: 0 2px 8px 0 rgba(0,124,240,0.10);
  border: none;
  display: inline-block;
  transition: background 0.22s, transform 0.16s, box-shadow 0.16s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-hot-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 22px 0 rgba(255,21,109,0.17);
}

.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 10px 28px;
  font-size: 1rem;
  margin-top: 14px;
  border: none;
  transition: background 0.19s, color 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-electric-blue);
  color: #fff;
}

button, .btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: var(--radius-md);
  outline: none;
}

/* ===== LIST STYLES & ICONS ===== */
ul, ol {
  padding-left: 0;
  margin-left: 0;
}
ul li {
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
  line-height: 1.7;
}
ul li img {
  position: absolute;
  left: 0;
  width: 26px;
  height: 26px;
  margin-right: 7px;
  object-fit: contain;
}

/* ===== QUICK FACTS / BADGES ===== */
.quick-facts {
  background: var(--color-bright-green);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px 0 rgba(25,227,124,0.11);
  margin-top: 18px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 1.10rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-facts h4 {
  color: var(--color-primary);
  font-weight: 900;
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 36px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 22px 0 rgba(40,75,99,0.14);
  margin-top: 62px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-hot-pink);
  color: #fff !important;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 1rem;
  align-items: center;
}
.contact-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 6px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.footer-brand img {
  height: 38px;
  width: 38px;
}
.footer-brand span {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===== FAQ & ACCORDION-CARDS (excursies.html) ===== */
.faq ul {
  margin-top: 8px;
}
.faq ul li {
  margin-bottom: 24px;
  padding: 18px 22px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq ul li h3 {
  font-size: 1.20rem;
  margin-bottom: 4px;
  color: var(--color-electric-blue);
  font-weight: 800;
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(40,75,99,0.15);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2250;
  padding: 24px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: banner-in 0.45s cubic-bezier(.92,.11,.15,1.11);
}
@keyframes banner-in {
  from { transform: translateX(-50%) translateY(120px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--color-primary-dark);
  font-size: 1.04rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-actions .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  transition: background 0.17s, color 0.17s, transform 0.15s;
}
.cookie-actions .accept {
  background: var(--color-electric-blue);
  color: #fff;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: var(--color-bright-green);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.cookie-actions .reject {
  background: var(--color-hot-pink);
  color: #fff;
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-actions .settings {
  background: #eee;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-bright-green);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 56%;
  transform: translate(-50%,-50%) scale(0.98);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px 0 rgba(40,75,99,0.25);
  z-index: 2300;
  width: 95vw;
  max-width: 430px;
  padding: 33px 30px 24px 30px;
  animation: modal-in 0.28s cubic-bezier(.55,.05,.44,1);
}
@keyframes modal-in {
  from { opacity:0; transform: translate(-50%, 25%) scale(0.78); }
  to { opacity:1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: var(--color-hot-pink);
  font-size: 1.28rem;
  font-weight: 800;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: var(--color-hot-pink);
  color: #fff;
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal .modal-close:hover {
  background: var(--color-electric-blue);
  color: #fff;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.07rem;
  color: var(--color-primary-dark);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-electric-blue);
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-category[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .modal-btn {
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  font-family: 'Montserrat';
  border: none;
  transition: background 0.18s, color 0.15s;
}
.cookie-modal .modal-btn.accept {
  background: var(--color-bright-green);
  color: #fff;
}
.cookie-modal .modal-btn.accept:hover { background: var(--color-electric-blue); }
.cookie-modal .modal-btn.reject {
  background: var(--color-hot-pink);
  color: #fff;
}
.cookie-modal .modal-btn.reject:hover { background: var(--color-secondary); }

.cookie-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2200;
  width: 100vw;
  height: 100vh;
  background: rgba(40,75,99,0.18);
}

/* ===== MICRO-INTERACTIONS ===== */
a, button, .cta-primary, .cta-secondary, .btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, transform 0.16s;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
  }
  .footer-brand img {
    height: 32px;
    width: 32px;
  }
}
@media (max-width: 768px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }

  .container {
    padding: 0 6vw;
  }
  .section {
    margin-bottom: 30px;
    padding: 22px 5px;
  }
  .hero {
    padding: 44px 0 30px 0;
    margin-bottom: 28px;
    border-radius: 0 0 18px 18px;
  }
  .contact-details, .footer-brand {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .content-wrapper {
    gap: 9px;
  }
  .card-container, .content-grid, .testimonial-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .section {
    margin-bottom: 20px;
    padding-left: 2vw; padding-right: 2vw;
  }
  .cookie-banner {
    padding: 14px 6px 11px 9px;
    border-radius: 16px 16px 0 0;
  }
  .cookie-modal {
    padding: 16px 6px 10px 13px;
    border-radius: 16px;
  }
}

/* ===== VISUAL ACCENTS ===== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
}

/* Highlighted electric (vibrant-energetic) accents */
h2, h3, h4 {
  position: relative;
}
h2:before, .section h3:before {
  content: '';
  display: block;
  width: 38px;
  height: 6px;
  border-radius: 4px;
  background: var(--color-hot-pink);
  position: absolute;
  left: 0; top: -14px;
}
.section h3:before { width: 24px; top: -8px; }
h3:before { background: var(--color-electric-blue); }

/* Call-to-action links */
.section a.cta-primary, .content-wrapper > a.cta-primary {
  margin-top: 10px;
  display: inline-block;
  align-self: flex-start;
}

/* Electric underline on hover for regular links */
a:not(.cta-primary):not(.cta-secondary):not(.btn):hover, a:not(.cta-primary):not(.cta-secondary):not(.btn):focus {
  color: var(--color-hot-pink);
  border-bottom: 2.3px solid var(--color-hot-pink);
}

/* Testimonials: readable text on white */
.testimonial-card p,
.testimonial-card footer {
  color: #222;
  font-size: 1.09rem;
}
.testimonial-card footer {
  font-size: 0.98rem;
  color: var(--color-electric-blue);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 6px;
}

/* Miscellaneous rules for extra space and modern look */
main > section, main section {
  margin-bottom: 50px;
}

/* FORMATTING FOR CARDS & FEATURE LISTS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
/* End of CSS */
