/* === Global Reset & Base === */
html,
body {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, #1a3a4a 30%, #2d5a4a 70%, var(--color-dark-bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6,
.display-4,
.lead {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

h2 a {
  color: var(--color-black);
  text-decoration: none;
}

em {
  font-style: italic !important;
}

.entry-content h1,
.entry-content h2 {
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  color: #222;
}

.entry-content p {
  margin-bottom: 1em;
  font-size: 14px;
}

.entry-content a {
  color: var(--color-accent-blue);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--color-accent-blue-hover);
}

.entry-content ul,
.entry-content ol {
  margin: 1em 0;
  padding-left: 1.4em;
}

/* === Layout === */
.site-content,
.entry-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.4;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.entry-content {
  padding: 0;
  overflow: hidden;
}
body.page-id-45 .entry-content {
  background: #fefefe;
  border-left: 4px solid var(--color-accent-blue);
  padding-left: 24px;
}

figure.wp-block-gallery {
  margin: 0;
}

/* === CSS Variables === */
:root {
  --color-primary: #93c572;
  --color-accent-blue: #0073aa;
  --color-accent-blue-hover: #005177;
  --color-accent-green: #00b23b;
  --color-accent-green-hover: #007d0f;
  --color-orange: #ff6600;
  --color-orange-hover: #e65c00;
  --color-dark: #202020;
  --color-light-bg: #fefefe;
  --color-white: #fefefe;
}

.read-more-txt {
  color: #335ea5;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.read-more-txt::after {
  content: '≫';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.read-more-txt:hover {
  color: #000;
}

.read-more-txt:hover::after {
  transform: translateX(4px);
}

/* Fullscreen modal */
.fullscreen {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
}

.explore {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.explore h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.explore-item img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.partners-grid .page-content {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgb(255 255 255 / 21%);
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 2rem;
  border-radius: 1rem;
  color: white;
}
/* Responsive container */
.responsive-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 0;
}

/* Image side */
.responsive-box .image {
  flex: 1 1 300px; /* flex-grow, flex-shrink, min-width */
}

.responsive-box img {
  width: 100%; /* scale down nicely */
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Text side */
.responsive-box .text {
  flex: 1 1 300px;
  margin-right: 2rem;
}

.responsive-box .text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.responsive-box .text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Buttons inside text */
.responsive-box .btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-accent-blue, #0073aa);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.responsive-box .btn:hover {
  background: var(--color-accent-blue-hover, #005177);
  color: white;
  border: none;
}
.responsive-box figcaption {
position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    right: 0;
    text-align: center;
    background: rgb(0 0 0 / 80%);
    padding: 12px;
    border-radius: 6px;
}
.responsive-box figure {
  position: relative;
  margin: 0;
}
.responsive-box .image p {
  margin: 0;
}
.book-now {
  padding: 60px 20px;
  text-align: center;
  background: #202020;
}

.book-now h2 {
  text-align: center;
  color: #dedede !important;
}

/* === Buttons === */
.book-now-button {
  background: #058526;
  color: var(--color-white) !important;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  border: 1px solid var(--color-accent-green-hover);
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.book-now-button:hover {
  background: var(--color-white);
  color: var(--color-accent-green) !important;
  border: 1px solid var(--color-accent-green);
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept, .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny, .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences {
    background-color: #2e744d!important;
}
.cmplz-cookiebanner .cmplz-links .cmplz-link {
    color: #103a24!important;
}
/* Booking policy modal */
#booking-policy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

#booking-policy-modal .modal-content {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  padding: 20px;
  margin: 10% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

figure.wp-block-media-text__media {
  background: white;
  height: 100%;
}
/* Scope everything to frontpage */
.frontpage body {
  background: linear-gradient(rgb(26, 42, 58) 0%, rgb(42, 74, 74) 30%, rgb(58, 90, 74) 70%, rgb(42, 58, 58) 100%);
  font-family: 'Roboto', sans-serif;
}

.frontpage h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 300;
}

.frontpage .btn {
  background: #0073aa;
  color: #fff;
  padding: .6rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid #1f2937;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block !important;
  cursor: pointer;
}

.frontpage .hero-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.frontpage .hero-slider .hero-textbox {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  max-width: 800px;
}

.frontpage .hero-slider .hero-textbox h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.frontpage .hero-slider .hero-textbox p {
  font-size: 1.2rem;
}

/* Swiper arrows & pagination */
     .frontpage  .swiper { width:120%; overflow: visible; height: 300px;}
     .frontpage  .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.4s ease;
    }

   .frontpage  .swiper-slide img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.4s ease;
    }

    /* Center slide larger */
   .frontpage .swiper-slide-active img {
      transform: scale(1.1);
      z-index: 10;
    }

    /* Fullscreen modal */
    .frontpage .fullscreen {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
    }
    .frontpage .fullscreen .swiper {
      height: 100%;
    }

    .frontpage .close-btn {
      position: absolute;
      top: 50px;
      right: 20px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      z-index: 1000;
    }



.frontpage .swiper-button-next,
.frontpage .swiper-button-prev {
  color: #fff;
}
.hedetangen-swiper .btn {
	margin: 1rem auto;
}
.frontpage .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.frontpage .swiper-pagination-bullet-active {
  opacity: 1;
}

.frontpage .section {
  padding: 4rem 2rem;
  background: #fff;
}

.frontpage .section .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.frontpage .section .section-content.reverse {
  flex-direction: row-reverse;
}

.frontpage .section .section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.frontpage .faq {
  max-width: 800px;
  margin: 0 auto;
}

.frontpage .faq h2 {
  color: white !important;
  font-size: 4rem;
}

.frontpage .faq .faq-item {
  margin-bottom: 1rem;
}

.frontpage .faq-question {
  display: block;
  width: 100%;
  text-align: left;
  background: #dcdcdc;
  color: #373737;
  padding: .5rem 1rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.frontpage .faq-answer {
  display: none;
  padding: .5rem 1rem;
  background: #eee;
  border-left: 3px solid #0073aa;
}

.frontpage .faq-item.active .faq-answer {
  display: block;
}

.frontpage .explore-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.frontpage .explore-item {
  flex: 1 1 calc(33.333% - 1rem);
  text-align: center;
}

.frontpage .explore-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.frontpage .book-now {
  text-align: right;
  padding: 2rem;
}
.frontpage .book-now .book-now-button  {
    text-align: center;
    padding: 1.5rem 6rem;
    margin: 0 2rem;
    display: block;
}
.frontpage-section {
  display: flex;
  flex-wrap: wrap;
  /* allows stacking on small screens */
  min-height: 300px;
  /* ensures decent size */
}

/* LEFT: background image */
.frontpage-section .image-column {
  flex: 1;
  /* takes half width */
  min-width: 300px;
  background-size: cover;
  /* fill the column */
  background-position: center;
  /* keep it centered */
  background-repeat: no-repeat;
}

/* RIGHT: text */
.frontpage-section .text-column {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  align-items: center;
  /* vertical centering */
}

.page-title {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgb(255 255 255 / 21%);
  border: 1px solid rgba(255, 255, 255, 0.125);
  text-align: center;
  font-size: 2.8em;
  margin: 8rem 1rem 0;
  color: #fff;
  display: inline-block;
  border-radius: 2rem 2rem 0 0;
  padding: 1rem;
}

.button-container {
  text-align: right;
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 16px;
  border-radius: 4px;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
}

.pagination .current {
  background: #0073aa;
  color: #fff;
  font-weight: bold;
}

.facebook-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  margin: 2rem 0;
  /* spacing around video */
}

.facebook-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 45%;
  /* default: 16:9 (mobile) */
}

.facebook-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.facebook-video-fallback {
  display: none;
  /* only show if iframe fails */
  text-align: center;
}

.facebook-video-fallback img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.facebook-video-fallback p {
	margin-top: -40%;
    color: white;
    font-weight: bold;
    font-size: 3rem;
}

.single-review-frontpage {
  margin: 0 auto;
}

/* === Modal === */
#booking-policy-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

#booking-policy-modal .modal-content {
  backdrop-filter: blur(20px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  padding: 20px;
  margin: 10% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

.button-container {
  text-align: right;
}

.btn:hover,
.wp-element-button:hover {
  background: #fff;
  transform: translateY(-1px);
  color: #1f2937;
}

.btn,
.wp-element-button,
#close-policy-modal {
  background: #0073aa;
  color: #fff;
  padding: .6rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid #1f2937;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block !important;
  width: auto !important;
  cursor: pointer;
}

.btn-fill,
.wp-element-button {
  background: #0073aa;
}

.btn-fill:hover,
.wp-element-button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  color: #0073aa;
}

.btn-outline {
  background: transparent;
  border: 2px solid #3babe6;
  color: #3babe6;
}

.btn-outline:hover {
  background: #3babe6;
  color: white;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 30, 45, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147, 197, 114, 0.2);
  padding: .4rem 2rem;
  z-index: 1000;
  transition: all 0.3s ease;
  height: 3.2rem;
}

.navbar.scrolled {
  background: rgba(10, 25, 40, 0.95);
  border-bottom: 1px solid rgba(147, 197, 114, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand img {
  background: var(--color-white);
  padding: .4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
}

.logo {
  width: 100px;
  height: 100%;
  font-weight: 600;
  position: absolute;
  z-index: 1001;
  letter-spacing: 1px;
  left: 1.5rem;
  text-decoration: none;
}

#navbarNav {
  padding: 1rem;
  text-align: right;
}

/* === Mobile Nav === */
#hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 1rem;
  z-index: 1001;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

#hamburger span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  margin: 4px 0;
  transition: all 0.4s;
  border-radius: 2px;
}

#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: var(--color-primary);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(72, 148, 96, 0.98) 0%, rgba(28, 55, 73, 0.98) 50%, rgba(8, 49, 44, 0.98) 100%);
  backdrop-filter: blur(25px);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.active {
  transform: translateX(0);
}

.nav-links {
  list-style: none;
  text-align: center;
  margin-top: 1rem;
}

.nav-links li {
  margin: .2rem 0;
  transform: translateX(-50px);
  transition: all 0.6s;
}

.mobile-menu.active .nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  position: relative;
  display: block;
  padding: 0.2rem 0;
  transition: all 0.4s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), #40e0d0, #48bb78, transparent);
  transform: translateX(-50%);
  transition: all 0.4s;
}

.nav-links a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
  text-shadow: 0 8px 25px rgba(147, 197, 114, 0.3);
}

.nav-links a:hover::before {
  width: 120%;
}

.contact-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.8s;
  color: rgba(248, 249, 250, 0.7);
  font-size: 0.8rem;
}

.mobile-menu.active .contact-info {
  opacity: 1;
}

/* === Components === */
.booking-trigger {
  border: 1px solid #a6a6a6;
  color: #494949;
  padding: .3rem .8rem;
  font-size: .8rem;
  font-family: Arial;
}

.front-page-title {
  color: white;
  font-weight: 300;
  margin-top: 2rem;
}

figure.wp-block-media-text__media {
  background: white;
  height: 100%;
}
.card-grid {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card-group-heading, .card-group-footer {
  padding: 0 2rem;
  text-align: center;
}
.card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.card-image {
  /*width: 100%;
  height: 180px;*/
  flex: 1 1 40%;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95em;
  color: #555;
}
.card-link {
  position: absolute;
  inset: 0; /* covers entire card */
  text-indent: -9999px; /* hides any fallback text */
  background: rgba(0,0,0,0); /* transparent clickable overlay */
}
/* 🌫 Glassmorphism Contact Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* 🌈 Aurora glass form fields */
.glass-form input,
.glass-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.glass-form button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.glass-form button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* === Carousel === */
#mainSlider {
  height: 350px;
  overflow-y: hidden;
}

.carousel-item img {
  height: 350px;
  object-fit: cover;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 15px;
  bottom: 5rem;
  font-family: 'Qwigley', sans-serif;
  font-size: 20px;
}

.carousel-caption p {
  font-size: 50px;
}

.carousel-caption h2 {
  font-size: 1.5rem !important;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: white !important;
}

/* === Footer === */
.site-footer {
  margin-top: 2rem;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-muted);
  position: relative;
}

.site-footer p {
  font-size: 1.2rem;
  margin: 2rem 0 1rem 0;
  border-bottom: 1px solid grey;
  padding-bottom: .5rem;
  color: whitesmoke;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.site-footer address {
  font-style: normal;
  color: var(--color-muted);
}

.copy-footer {
  border-top: 1px solid #3a3a3a;
  padding-top: 1rem;
  color: #5b5b5b;
  margin-top: 2rem;
  font-size: 12px;
}

.social-icons a {
  font-size: 0rem;
  margin: 0 1rem;
}

.fb-social {
  border-radius: 2rem;
  width: 3rem;
}

.insta-social {
  border-radius: 1rem;
  width: 3rem;
}

.trustpilot-social {
  border-radius: 0rem;
  width: 6em;
}

@keyframes aurora {
  0% {
    opacity: 0.3;
    transform: translateY(0px) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1.05);
  }

  100% {
    opacity: 0.4;
    transform: translateY(-10px) scale(0.98);
  }
}

@keyframes menuAurora {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* === Admin Bar === */
#wpadminbar {
  display: none;
}

#navLinksContainer {
  display: none;
}

#tp-widget-wrapper #profileUrl {
  width: 100%;
  display: block;
}

.trustpilot-testimonials {
  max-width: 800px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.trustpilot-testimonials h5 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--color-muted-light);
}

.trustpilot-testimonials blockquote {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  font-style: italic;
  color: #fefefe;
  position: relative;
}

.trustpilot-testimonials blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--color-primary);
  opacity: 0.3;
}

.trustpilot-testimonials blockquote p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.trustpilot-testimonials cite {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted-light);
}

.modal-content-container {
  background: white;
  max-width: 800px;
  margin: 4rem auto;
  padding: 1rem;
}
/* === Desktop Menu Override === */
@media (min-width: 768px) {
  #hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  #navbarNav {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
    margin: 0;
  }

  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
    margin: 0;
    font-size: .8rem;
  }

  .nav-links a {
    font-size: .8rem;
    font-weight: 400;
    color: var(--color-white);
    padding: 0.5rem 0;
    position: relative;
  }

  .nav-links a:hover {
    color: var(--color-primary);
    transform: none;
    text-shadow: none;
  }

  .current-menu-item a {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    transform: translateX(0%);
  }

  .nav-links a:hover::before {
    width: 100%;
  }

  #navLinksContainer {
    display: block;
  }
}
/* Mobile: stack image on top */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

.card-image {
    height: 200px;
    width: 100%;
  }

  .facebook-video-wrapper {
    padding-top: 50%;
    /* tighter aspect ratio */
  }
  .hedetangen-swiper {
    height: auto;
    padding: 2rem 0;
    border-radius: 0;
  }
   .frontpage  .swiper { width:100%; overflow: visible; height: 250px;}
    .frontpage-section {
    flex-direction: column;
  }

  .frontpage-section .image-column {
    width: 100%;
    min-height: 200px;
    /* set a fixed height for mobile image */
  }

  .frontpage-section .text-column {
    width: 100%;
    padding: 20px;
  }

  .navbar-brand img {
    max-height: 80px;
  }

  .faq, .trustpilot-testimonials,
  .startpage-contactform {
    margin: 1rem auto;
    max-width: 90%!important;
  }
  .frontpage .book-now .book-now-button {
    padding: 1.5rem;
  }
    .responsive-box {
      flex-direction: column;
        text-align: center;
        margin: 3rem 0 -4rem;
  }

  .responsive-box .text {
    margin-right: 0;
    max-width: 80%;
  }

  .responsive-box .btn {
    width: 100%; /* full-width button on mobile */
    max-width: 280px;
    margin: 0 auto;
  }
}
/* Portrait (phones held vertically) */
@media screen and (max-width: 480px) {
  .nav-links a {
    font-size: 2rem;
  }
}