* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.christmas {
  z-index: 9999;
  width: 14%;
  position: absolute;
  right: 0;
margin-right: 43vh;
  margin-top: -4.3vh;

 
}

.price-main {
  font-size: 1.2rem;
  color: rgb(57, 57, 57);

}

.price-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  color: rgb(30, 30, 30);
  font-weight: 600;
}


html {
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 152, 122, 0.6) 0%,
    rgba(0, 152, 122, 0.2) 60%,
    rgba(0, 152, 122, 0) 100%
  );
  background-attachment: fixed; /* smoother scrolling */
  background-repeat: no-repeat;
}

body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  background: transparent;
  
}

/* Topbar */
.topbar {
  background: linear-gradient(to left, #00907f, #17caa6);
  color: white;
  font-size: 0.6rem;
  padding: 8px 0px;
}

.topbar-content {
  max-width: 1200px;
  margin: 0 195px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center; 

  
}

.topbar-content span {
  display: inline-flex;
  align-items: center;
  gap: 4px;



}

header {
  position: fixed; 
  top: 40px;       /* flytter headeren ned så den ikke overlapper topbar */
  left: 0;
  width: 100%;
  z-index: 10;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 10px; 
}

.logo img {
  max-height: 70px;
  height: auto;
  width: auto;
  display: block;
}

.nav-links {
  position: absolute;
  top: -0.5vh;          /* lige under topbar */
      /* fast afstand fra højre */

  display: flex;
  gap: 50px;
  right: 0vw;
  background-color: #006b5560;
  padding-top: 7px ;
  padding-bottom: 6.3px;
  padding-left: 170px;
  padding-right:200px;
  
  border-radius: 6px;

  z-index: 9999;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;

  
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 70px;
  right: 20px;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 999;
}

.mobile-nav a {
  margin: 10px 0;
  text-decoration: none;
  color: #111;
}

.mobile-nav.active {
  display: flex;
}

/* Forside indhold */
.hero {
  margin-top: -2vh;
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 200px;
}

.hero-content.two-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  margin-top: -80px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

.hero-text {
  flex: 1;
  color: white;
  z-index: 2;
  margin-top: 3rem;
}

.hero-box {
  flex: 1;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin-top: 8rem;
}

.hero-box h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #333;
}

.hero-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-box input,
.hero-box textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.hero-box button {
  padding: 0.75rem;
  background-color: #007B8A;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero-box button:hover {
  background-color: #005f6a;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 152, 122, 0.6) 0%,
    rgba(0, 152, 122, 0.2) 60%,
    rgba(0, 152, 122, 0) 100% 
  );
  z-index: 0;
}

/* Forside showcase billeder */
.photo-gallery {
  position: relative; /* vigtigt for fade overlay */
  background-color: white;
  padding: 0px 20px;
  text-align: center;
  overflow: hidden;
}

.photo-gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00987a;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -5vh;
  position: relative; /* for fade */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 60px 20px;
  background-color: white;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.image-wrapper img {
  width: 100%;
  aspect-ratio: 1.5 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(to top, #00987a 0%, transparent 100%);
  pointer-events: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.before-after-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5 / 2;
  overflow: hidden;
}

.before-after-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Før-billedet ligger under, altid synligt */
.before-image {
  z-index: 1;
}

/* Efter-billedet ligger ovenpå og skjules med clip-path */
.after-image {
  z-index: 2;
  clip-path: inset(0 100% 0 0);          /* start skjult */
  -webkit-clip-path: inset(0 100% 0 0);  /* Safari */
  transition: clip-path 0.12s ease;
  pointer-events: none;
}

/* labels på billeder */
.label {
  position: absolute;
  top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
  z-index: 4;
  pointer-events: none;
}
.label.before { right: 15px; }
.label.after { left: 15px; }

/* slider nederst */
.before-after-container .slider {
  position: absolute;
  top: 94%;                /* i stedet for bottom */
  left: 50%;
  transform: translate(-50%, -50%); /* centrer både lodret og vandret */
  width: 80%;
  z-index: 3;

  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

/* track */
.before-after-container .slider::-webkit-slider-runnable-track {
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
}

.before-after-container .slider::-moz-range-track {
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
}

/* thumb (grebet) */
.before-after-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00987a;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: ew-resize;
  position: relative;
}

.before-after-container .slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00987a;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: ew-resize;
  position: relative;
}

.before-after-container .image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(to top, #00987a 0%, transparent 100%);
  pointer-events: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 2; /* ligger ovenpå billederne men under slider & labels */
}

/*About section */
.about-section {
  padding: 90px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative; /* vigtigt for at fade overlay placeres korrekt */
  flex: 1 1 400px;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}

.about-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to top, #00987a 0%, transparent 100%);
  pointer-events: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.about-text {
  flex: 1 1 400px;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00987a;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}

/*About section */
.faq-section {
  padding: 60px 20px;
  text-align: left;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2rem;
  color: #00987a;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: #111;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; 
  margin-top: 10px;
}

/* Anmeldelser */
.review-image {
  margin-top: 20px;
  max-width: 450px;
}

.review-image p {
  margin-bottom: 8px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.review-image img {
  width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;        /* sikrer de står på hver sin linje */
  margin-bottom: 16px;   /* afstand mellem billederne */
}

/* fjern sidste margin-bottom så der ikke kommer ekstra luft under sidste billede */
.review-image img:last-child {
  margin-bottom: 0;
}

/* Servideydelser */
.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  margin-top: 0vw;
  
}

.standard-section {
  display: flex;
 
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 0px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.standard-image-wrapper {
  position: relative;
  flex: 0 0 380px; /* Fastsætter bredden til 380px */
  height: 420px;    /* Fastsætter højden til 420px — holder 3:4-forhold */
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto; /* Centrerer på mindre skærme */
}

.standard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.standard-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Dækker nederste 40% */
  background: linear-gradient(to top, #00987a 0%, transparent 100%);
  pointer-events: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

    @keyframes mask {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.standard-text {
  max-width: 500px;
}

.standard-text .price {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #00987a; /* eller en farve der matcher dit tema */
}

.standard-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #007B7F;
}

.standard-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Knap: Serviceydelse > Booking */
.booking-button {
  display: inline-block;
  background-color: #0e967b;
  color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.8rem;
}

.booking-button:hover {
  background-color: rgb(21, 184, 151)
}

/* Handelsbetingelser, privatlivspolitik */
.terms-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 800px;
}

.terms-section h1 {
  font-size: 2rem;
  color: #007B7F;
  margin-bottom: 20px;
}

.terms-section h2 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.terms-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.last-updated {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}

/* Booking side */
.booking-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  width: 100%;
}

.booking-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #007B7F;
}

.booking-section p {
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin-top: 15px;
  font-weight: bold;
}

.booking-form input,
.booking-form textarea {
  padding: 10px;
  font-size: 1rem;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.booking-form button {
  margin-top: 25px;
  padding: 12px;
  font-size: 1rem;
  background-color: #007B7F;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #005f61;
}

/* Footer */
.site-footer {
  background-color: #00987a;
  color: white;
  padding: 40px 20px 20px;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-nav a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #e0f2f1;
}

.footer-section p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.social-icons a {
  font-size: 1.5rem;
  color: white;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e0f2f1;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  color: rgba(255,255,255,0.8);
}

/* Scroll to top button */ 
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #ffffff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.trustpilot-logo {
  height: auto;              /* lad højden følge bredden */
  width: 100%;               /* maks bredde inden for containeren */
  max-width: 80px;          /* begræns så den ikke bliver for stor */
  display: inline-block;
  box-shadow: black 1px 1px 8px 1px;
  vertical-align: middle;    /* justér lodret i forhold til tekst */
}

.topbar-content span {
  white-space: nowrap; /* 🔥 dette er nøglen */
}

/* Optimeret til mobil */ 

/* Topbar: Mobil: */
@media (max-width: 600px) {
  .topbar-content {
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap; /* VIGTIG */
    text-align: center;
  }
}
/* Header & logo: Mobil */
@media (max-width: 768px) {
  header {
    height: 80px;             /* Lidt lavere header på mobil */
    padding: 0 20px;
  }

  .logo img {
    max-height: 50px;         /* Mindre logo på små skærme */
    height: auto;
    width: auto;
    display: block;
     /* <-- Ryk logoet ned 1–2vh på mobil */
    margin-left: -2vh;
  }
}

/* Navigation: Mobil */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-top: 0vh;
    margin-right: -0.8vh;
  }
}

/* Forsidetekst, reviews og tilbudsboks, videobaggrund: Mobil */
@media (max-width: 768px) {
  .hero-content.two-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .hero-text,
  .hero-box {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
  .hero-box {
    margin-top: -2vw;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }
}

/* Anmeldelser: Mobil */
@media (max-width: 768px) {
  .review-image {
    display: flex;
    flex-direction: column;   /* stack images vertically */
    align-items: center;      /* center them horizontally */
    text-align: center;       /* center the text too */
    max-width: 280px;
    margin: 0 auto;           /* center the whole block */
    margin-top: 3vh;
  }

  .review-image img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;      /* space between images */
  }
  .hero-text {
    text-align: center;
  }
}

/* About section: Mobil */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image, .about-text {
    flex: 1 1 100%;
  }

  .about-text h2 {
    margin-top: 20px;
  }

  .about-image img {
  max-width: 300px;
  margin: 0 auto;
}

  .about-image {
  display: flex;
  justify-content: center;
}
}

/* Servideydelser: Mobil */
@media (max-width: 768px) {
  .content-container {
    margin-top: 10vh;
  }
}

@media (max-width: 768px) {
  .standard-section {
    flex-direction: column;
    text-align: center;
  }

  .standard-image-wrapper {
    flex: 1 1 100%;
    max-width: 380px; /* Bevarer max bredde */
    height: 420px;    /* Fast højde for at sikre fade ovenpå */
    margin: 0 auto;
  }

  .standard-image,
  .standard-text {
    width: 100%;
  }
}

/* Footer section: Mobil */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  .social-icons a {
    font-size: 1.3rem;
    margin-right: 10px;
  }
}

/* Scroll to top button: Mobil */ 
@media (max-width: 600px) {
  #scrollToTopBtn {
    padding: 10px 14px;
    font-size: 18px;
    bottom: 20px;
    right: 15px;
  }
}


/* Optimeret til tablets */ 