
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  line-height: 1.5;
  background-color: #f9ede397;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.current a {
  color: #0d3d3f;
}

/**********************************/
/*      NAVBAR/HEADER        */
/**********************************/
header {
  background-color: #000000;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.navbar {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}


.darkerr {
  padding: 8px 24px;
  color: #000;
  background-color: #f3c13a;
  border-radius: 999px;
  display: inline-block;
  margin-left: 20px;
}

.darkerr a {
  color: #000;
  font-weight: 600;
    font-size: 16px;

}

.nav-link.current {
  text-decoration: underline;
}

.darkerr i {
  margin-left: 10px;
}

.translate-real-btn {
  padding: 8px 20px;
  background-color: #2f1200;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.translate-real-btn:hover {
  background-color: #4b1c00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 6px auto;
  transition: all 0.3s ease;
  background-color: #fff;
}


/**********************************/
/*      HERO SECTIONS       */
/**********************************/
.hero {
  position: relative;
  background: url("../img/dahero.jpg") center center / cover no-repeat;
  height: 85dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 6, 18, 0.703), rgba(4, 37, 72, 0.241));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  font-size: 60px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-kontakt {
  background-color: #f3c13a;
  color: #000;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.2s ease-in-out;
}

.btn-kontakt:hover {
  background-color: #e1ae28;
}

.btn-info {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.2s ease-in-out;
}

.btn-info:hover {
  background-color: #f0f0f0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #ddd;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  backdrop-filter: blur(2px);
}


.cleaning-slider {
  overflow: hidden;
  background-color: #31073dd0;
  padding: 8px 0;
  margin-top: 20px;
}

.cleaning-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-cleaning 30s linear infinite;
}

.cleaning-track h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff; /* Mørk grønn */
  display: inline-block;
  margin: 0;
}

@keyframes scroll-cleaning {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobiltilpasning */
@media (max-width: 768px) {
  .cleaning-track {
    gap: 30px;
  }

  .cleaning-track h3 {
    font-size: 1rem;
  }
}




.service-carousel {
  padding: 100px 30px;
  text-align: center;
  background: #fff;
}

.subheading {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.slide {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: #000;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

.slide-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  text-align: left;
}

.slide-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.slide-text p {
  font-size: 14px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #333;
}


.ktor-ren {
  padding: 90px 0;
  padding-top: 120px;

}


.padding-min {
  padding: 40px 0;
}



.ktor-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
        background-color: #e1d3c997;
        width: 100%;


}

.img-side img {
  width: 100%;
  border-radius: 0 6px 6px 0;

}

.ktor-text {
  padding-left: 50px;
}

.ktor-text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 40px;
  max-width: 90%;
}

.ktor-text p {
  font-size: 20px;
  padding: 30px 0;
  line-height: 1.8;
  max-width: 89%;
  font-weight: 500;
}



.btn-bestill {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 700;
  background-color: #1d1205;
  color: #fff;
  border-radius: 999px;
  font-family: 16px;
}






.renhold-fordeler {
    background-color: #FCF5EF;

  padding-top:120px;
  padding-bottom: 10px;
  text-align: center;
}

.renhold-fordeler h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 30px;
}

.fordeler-top {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  font-size: 18px;
  color: #000;
}

.fordeler-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 50px;
  flex-wrap: wrap;
}

.fordel-boks {
  background: #ece1d7;
  border-radius: 12px;
  max-width: 510px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s ease;
}

.fordel-boks:hover {
  transform: translateY(-8px);
}

.fordel-boks img {
  width: 100%;
  height: auto;
    aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 20px;
}

.fordel-boks h3 {
  font-size: 26px;
  color: #000;
  margin-bottom: 15px;
}

.fordel-boks p {
  font-size: 16px;
  padding: 5px;
  color: #222;
  margin-bottom: 20px;
}

.fordel-boks a {
  font-weight: 600;
  color: #3c2f24;
  text-decoration: underline;
}

.cleaning-section {
  padding: 60px 0;
    background-color: #FCF5EF;


}

.container-info {
  display: flex;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #e1d3c9b6;
  border-radius: 5px;
  width: 100%;
  
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 280px;
  object-fit: cover;
  position: relative;
}










.card-body {
  padding: 25px;
}

.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 35px;
  font-weight: 600;
  color: #000000;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 44px;
}

.tags span {
  background-color: #f3e3d400;
    border:  solid #222 1px;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 1rem;
  color: #000000;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background-color: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #333;
}

.btn-link {
  color: #111;
  text-decoration: underline;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .renhold-fordeler {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .renhold-fordeler h2 {
    font-size: 28px;
    padding: 0 20px;
  }

  .fordeler-top {
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
  }

  .fordel-boks {
    max-width: 100%;
    margin: 0 15px;
  }

  .fordel-boks h3 {
    font-size: 22px;
  }

  .fordel-boks p {
    font-size: 15px;
  }

  .container-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .service-card img {
    height: 220px;
  }

  .card-body {
    padding: 20px;
  }

  .tags {
    gap: 10px;
    margin-bottom: 25px;
  }

  .tags span {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .btn-primary {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/* Nettbrett-vennlig */
@media (min-width: 769px) and (max-width: 1024px) {
  .container-info {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0 20px;
  }
}


.renhold-about {
  padding: 50px 0;
    background-color: #4d0d5fd0;
  margin-top: 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 10px;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 410px;
}

.about-text {
  max-width: 600px;
  
  color: #fff;
}

.about-text h5 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 40px;
  max-width: 95%;
  color: #ffffff;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.6;
}

.about-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.icon-item {
  font-size: 18px;
  color: #fff;
  border: solid #fff 1px;
  padding: 9px 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-btn {
  display: inline-block;
  background-color: #FFD500;
  color: #242424;
  padding: 10px 40px;
  border-radius: 40px;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #f5cc01f2;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 20px;
  }

  .about-image img {
    display: none;

  }

  .about-text {
    max-width: 100%;
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .about-text p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .about-icons {
    justify-content: center;
    gap: 20px;
  }

  .icon-item {
    font-size: 16px;
    padding: 8px 20px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* Nettbrett */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 30px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .icon-item {
    font-size: 17px;
    padding: 9px 25px;
  }
}





.hvorfor-oss {
  background-color: #F9F5F2;
  padding: 50px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.hvorfor-oss h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1e2b3c;
}

.hvorfor-oss .intro {
  font-size: 18px;
  color: #546376;
  margin-bottom: 60px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card {
  background-color: #fff;
  flex: 1 1 280px;
  max-width: 340px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  color: #1e2b3c;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}



.faqs {
  background-color: #f9ede397;
  padding: 90px 0px;
  margin-top: 60px;
}

.faqs h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 0;
}

.accordion button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}

.accordion button:hover {
  color: #7d0a7b;
}

.accordion .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid #333;
  border-radius: 50%;
}

.accordion .icon::before,
.accordion .icon::after {
  content: "";
  position: absolute;
  background-color: #333;
}

.accordion .icon::before {
  top: 10px;
  left: 5px;
  width: 12px;
  height: 2px;
}

.accordion .icon::after {
  top: 5px;
  left: 10px;
  width: 2px;
  height: 12px;
  transition: height 0.2s ease;
}

.accordion button[aria-expanded="true"] .icon::after {
  height: 0;
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  max-height: 500px;
  opacity: 1;
}

.accordion-content p {
  padding: 1rem 0;
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.accordion-content a {
  color: #0a7d57;
  text-decoration: underline;
}

.prices {
  background-color: #ddd7cf36;
  padding: 80px 20px;
}

.prices-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  color: #222;
}

.prices-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.price-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.price-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #000000;
}

.price-item p {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #333;
}

.price-item strong {
  color: #111;
}


@media (max-width: 767px) {

  /* Felles padding og tekststørrelser */
  .faqs, .prices {
    padding: 60px 15px;
  }

  /* FAQ-layout: stabler bilde over accordions */
  .faqs .container {
    flex-direction: column;
    gap: 25px;
  }
  .faqs img {
    max-height: 280px;
    object-fit: cover;
  }

  .faqs h2 {
    font-size: 1.8rem;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .accordion button {
    font-size: 1.1rem;
    padding: 1.2rem 0;
  }

  .accordion {
    padding: 10px;
  }
  .accordion .icon {
    width: 25px;
    height: 22px;
   
  }

  /* Prisliste: én kolonne */
  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-item {
    padding: 20px;
  }
  .price-item h3 {
    font-size: 1.1rem;
  }
  .price-item p {
    font-size: 0.9rem;
  }
}

/* ========== NETTBRETT: 768–1024 px ========== */
@media (min-width: 768px) and (max-width: 1024px) {

  .faqs .container {
    flex-direction: column;
    gap: 35px;
  }
  .faqs h2 {
    font-size: 1.8rem;
  }
  .accordion button {
    font-size: 1.25rem;
  }

  /* Prisliste: to kolonner */
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
  

/*OM OSS*/

.oss {
  padding: 100px 20px;

}

.spred-sec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

.h-text h3 {
  font-size: 40px;
}

.p-text p {
  font-size: 20px;
  line-height: 1.7;

}

.team-section {
  padding: 80px 0;
}

.team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 90px;
  padding: 40px;
  border-radius: 20px;
    background-color: #f1e0f7;

}

.team-image img {
  max-width: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.team-text h5 {
  color: #4c106d;
  font-size: 16px;
  margin-bottom: 10px;
}

.team-text h2 {
  font-size: 30px;
  max-width: 800px;
  margin-bottom: 30px;
  font-weight: 700;
}

.team-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #100f0f;
  margin-bottom: 16px;
}

.cta-link {
  color: #6a0679;
  font-weight: 500;
  text-decoration: none;
}

.signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.signature .script {
  font-size: 30px;
  color: #000;
}

.signature .name {
  font-weight: bold;
  color: #8203ac;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .team-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 30px 20px;
  }

  .team-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: none;
  }

  .team-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .team-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .signature {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .signature .name {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .team-container {
    padding: 20px 15px;
    gap: 30px;
  }

  .team-image img {
    width: 100px;
    height: 100px;
  }

  .team-text h2 {
    font-size: 20px;
  }

  .team-text p {
    font-size: 15px;
  }

  .signature .name {
    font-size: 15px;
  }
}
.footer {
  background-color: #111;
  color: #eaeaea;
  padding-top: 100px;
  padding-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand h2 {
  font-size: 22px;
  margin-bottom: 50px;
  color: #eaeaea;
}

.social-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  background-color: #fff;
  color: #111;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #ddd;
}

.dev-note {
  font-size: 20px;
}

.dev-note a {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: space-around;
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  font-size: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-brand h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    margin-top: 0; /* Fjern eventuell stor toppmargin */
  }

 
  .footer-links a {
    font-size: 18px;
    line-height: 1.4;
    margin: 4px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    padding: 0 15px;
  }

  .dev-note,
  .footer-bottom a {
    font-size: 15px;
    margin: 5px 0;
  }
}


.kontakt-info {
  background-color: #f3ebe6;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.kontakt-info-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.firma-detaljer,
.kontakt-detaljer {
  font-size: 1.7rem;
  color: #222;
}

.kontakt-detaljer {
  text-align: right;
}

.kontakt-detaljer a {
  color: #c45515;
  text-decoration: none;
  font-weight: 500;
}

.kontakt-detaljer a:hover {
  text-decoration: underline;
}




.kontaktseksjon {
  background-color: #f3ebe6;
  padding: 90px 0;
  font-family: 'Arial', sans-serif;
}

.kontakt-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.kontakt-bilde img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
}

.kontakt-skjema {
  flex: 1;
  min-width: 250px;
}

.kontakt-skjema h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.kontakt-skjema p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #444;
}

.input-gruppe {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.input-gruppe input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

textarea {
  resize: vertical;
}

.gdpr {
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #222;
}

.gdpr a {
  color: #111;
  text-decoration: underline;
}

.send-btn {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: #333;
}

/* ============ RESPONSIVITET ============ */
@media (max-width: 1024px) {
  .kontakt-wrapper,
  .kontakt-info-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .firma-detaljer,
  .kontakt-detaljer {
    font-size: 1.4rem;
    text-align: center;
  }

  .kontakt-detaljer {
    margin-top: 10px;
  }

  .input-gruppe {
    flex-direction: column;
    gap: 0;
  }

  .kontakt-skjema {
    width: 100%;
  }

  .kontakt-bilde img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .kontakt-info {
    padding: 30px 15px;
  }

  .kontaktseksjon {
    padding: 60px 15px;
  }

  .kontakt-skjema h2 {
    font-size: 1.6rem;
  }

  .firma-detaljer,
  .kontakt-detaljer {
    font-size: 1.2rem;
  }

  .send-btn {
    width: 100%;
  }
}



/**********************************/
/*      MEDIA QUARY       */
/**********************************/
@media (max-width: 768px) {
  .languages img {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    display: block;
  }

  .navbar img {
    height: 46px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header {
    background: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.976);  /* Sett bakgrunnsfargen til hvit */
    backdrop-filter: blur(10px);
    text-align: center;
    transition: 0.3s;
  }

  .darkerr {
    width: 34%;
    font-size: 16px;
  }

  .nav-item {
    margin: 15px 0;
    align-items: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    height: 80dvh;
  }

  .hero-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 20px 0;
  }

  .hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-kontakt {
  background-color: #f3c13a;
  color: #000;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s ease-in-out;
}

.btn-info {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s ease-in-out;
}






  .renhold-about {
    padding: 50px 10px;
  }

  .about-image img {
    height: 100%;
    width: 100%;
  }
  
  .about-text h2{
    font-size: 25px;
  }

  .about-text p{
    font-size: 16px;
    padding: 20px 0;
  }

  .oss {
    padding: 50px 10px;
  }

  .spred-sec {
    display: grid;
    grid-template-columns: 1fr;
  }  

  .h-text h3 {
    font-size: 30px;
  }

  .p-text p {
    font-size: 16px;
  }

  .team-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .team-image img {
    width: 100%;
    height: 60dvb;
    object-fit: cover;
  }

  .team-text h2 {
    font-size: 30px;
  }

  .team-text p {
    font-size: 16px;
  }




}

@media screen and (max-width: 767px) {
  .ktor-content {
    grid-template-columns: 1fr;
    padding-top: 5px;
    gap: 30px;
  }

  .ktor-ren {
    padding-top: 60px;
  }

  .ktor-text {
    padding-left: 20px;
  }

  .ktor-text h2 {
    font-size: 28px;
    padding-bottom: 20px;
    max-width: 100%;
  }

  .ktor-text p {
    font-size: 16px;
    max-width: 100%;
  }

  .btn-bestill {
    padding: 12px 24px;
    font-size: 14px;
    margin-top: 20px;
  }

  .img-side {
    text-align: center;
  }

  .img-side img {
    max-width: 100%;
    border-radius: 0%;
    margin: 0 auto;
  }
}

/* Tablets - Between 768px and 1024px */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ktor-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .ktor-text {
    padding-left: 30px;
  }

  .ktor-text h2 {
    font-size: 32px;
    padding-bottom: 30px;
  }

  .ktor-text p {
    font-size: 18px;
  }

  .btn-bestill {
    padding: 12px 28px;
    font-size: 15px;
  }

  .img-side {
    text-align: center;
  }

  .img-side img {
    max-width: 100%;
  }
}

/* Desktop and larger screens (greater than 1024px) */
@media screen and (min-width: 1024px) {
  .ktor-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }

  .ktor-text {
    padding-left: 50px;
    text-align: left;
  }

  .ktor-text h2 {
    font-size: 40px;
    padding-bottom: 40px;
  }

  .ktor-text p {
    font-size: 20px;
  }

  .btn-bestill {
    padding: 14px 30px;
    font-size: 16px;
  }

  .img-side img {
    max-width: 100%;
  }
}