.contact-main {
  display: flex;
  flex-flow: row;
}

.reviewBox {
  display: flex;
  min-width: 300px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(82, 82, 82, 0.1);
}

.reviewContainer {
  gap: var(--gap-s);
  align-items: center;
}

.dotsContainer {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #cfcfcf;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--color-accent);
}

/* Hero image section */
.hero-image {
  width: 100%;
  background-image: url("/img/heroForside.webp");
  min-height: 600px;
  height: 600px;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

/* Place text in the middle of the image */
.hero-image-text {
  text-align: left;
  color: var(--color-primary);
  display: flex;
  min-width: 100%;

  padding: 0 var(--gap-m);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap-s);
  align-self: stretch;
  grid-row: 2 / span 1;

  justify-self: start;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(2px);
}
.leftSide {
  grid-area: left;
}
.rightSide {
  grid-area: right;
}
.reviewsSection {
  display: grid;
  grid-template-areas: "left right";
  gap: var(--gap-l);
}
.gallery {
  display: grid;
  grid-template-areas:
    "img1 img1 img1 img2 img2"
    "img3 img3 img4 img4 img4";
  gap: var(--gap-s);
}

.gallery-item {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.gallery-1 {
  grid-area: img1;
}
.gallery-2 {
  grid-area: img2;
}
.gallery-3 {
  grid-area: img3;
}
.gallery-4 {
  grid-area: img4;
}

/* -----Event------ */

.events-grid {
  display: block;
}

.events-grid .event-card {
  background: transparent;
  overflow: hidden;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap-l);
}

.event-card {
  display: flex;
  flex-direction: column;
}

.event-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 2px;
}

.price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-left: 1px solid var(--color-secondary);
  padding-left: var(--gap-s);
  margin-bottom: var(--gap-s);
  font-weight: bold;
  font-size: var(--fs-caption);
  margin-top: var(--gap-m);
}

/* Desktop layout */
@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .event-card__image {
    height: 180px;
  }
}

/* Telte */

.tentIntroText h2 {
  max-width: 650px;
  text-align: center;
  align-self: center;
  justify-self: center;
}

.tent-container {
  display: grid;
  grid-template-columns: var(--text-max-width-desktop) auto;
  gap: var(--gap-l);
  align-items: start;
  width: 100%;
  max-height: 650px;
}
.tent-left {
  max-width: var(--text-max-width-desktop);
}
.tent-badge {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-m);
}
.tent-badge--terra {
  background: var(--color-terra-light);
  color: var(--color-terra);
}
.tent-badge--silva {
  background: var(--color-silva-light);
  color: var(--color-silva);
}
.tent-badge--aqua {
  background: var(--color-aqua-light);
  color: var(--color-aqua);
}

.tent-features {
  display: flex;
  justify-content: space-around;
}
.features-col {
  list-style: disc;
  padding: 0;
}

.tent-detail__cta-row {
  display: flex;
  gap: var(--gap-m);
}
.price-box--terra {
  border-left: 3px solid var(--color-terra);
  padding-left: 12px;
}
.price-box--silva {
  border-left: 3px solid var(--color-silva);
  padding-left: 12px;
}
.price-box--aqua {
  border-left: 3px solid var(--color-aqua);
  padding-left: 12px;
}

.price-amount {
  font-weight: bold;
}

.tent-right {
  display: grid;
  grid-template-rows: 1.5fr 1fr;
  gap: var(--gap-s);
  max-height: 650px;
}

.gallery-main img {
  width: 100%;
  height: 392px;
}
.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-s);
}
.gallery-row img {
  width: 100%;
  height: 242px;
}

@media (max-width: 767px) {
  .tent-detail__inner {
    grid-template-columns: 1fr;
  }
  .gallery-main img {
    height: 260px;
  }
}

.included-section {
  text-align: center;
  align-items: center;
}

/* flat selector for included-section paragraphs (was nested) */
.included-section p {
  max-width: 100%;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-l);
}
.include-card {
  display: flex;
  width: 200px;
  height: 180px;
  padding: var(--gap-m);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-s);
  background: #fff;
}
.include-icon-container {
  background: var(--color-aqua-light);
  padding: var(--gap-s);
  border-radius: var(--radius-m);
}
.include-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.prices-section {
  text-align: center;
  gap: var(--gap-s);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* flat selector for prices-section paragraphs (was nested) */
.prices-section p {
  max-width: none;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-l);
  align-items: stretch;
}
.price-card {
  background: #fff;
  padding: var(--gap-m);
  text-align: left;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-l);
}

.inactive {
  color: var(--color-secondary);
}
.eventShowCase {
  padding: var(--gap-m);
  width: 100%;
  display: flex;
  gap: var(--gap-l);
  align-items: stretch;
  justify-items: center;
}

.eventShowCase-text {
  padding: var(--gap-l);
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  flex: 0 0 50%;
  align-self: flex-start;
}

.backgroundImg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Kontakt */

.leftSide form {
  display: block;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
  margin-top: var(--gap-s);
}
.leftSide label {
  display: block;
  font-weight: 600;
}
.leftSide input[type="email"],
.leftSide textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-accent);
  font-family: var(--font-nunito);
}
.leftSide textarea {
  min-height: 140px;
  resize: vertical;
}

/* Booking */

.guest-info {
  display: flex;
  gap: var(--gap-s);
  align-items: center;
  margin: var(--gap-s) 0;
}

/* flat selector for guest-info images (was nested) */
.guest-info img {
  width: 24px;
  height: 24px;
}

.main-book .intro-section {
  grid-area: intro;
}

/* flat selector for intro-section paragraphs (was nested) */
.main-book .intro-section p {
  max-width: none;
}

.main-book .leftSide {
  grid-area: leftSide;
  display: flex;
  flex-direction: column;
  gap: var(--gap-l);
}

.bookTentsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-m);
  max-width: 100%;
}

.bookTentContainer {
  cursor: pointer;
}

.bookTentContainer:hover {
  transform: scale(0.95);
}

.bookTentContainer:active {
  transform: scale(0.9);
}

#bookAquaTent:hover {
  background-color: var(--color-aqua-light);
  outline: 8px solid var(--color-aqua-light);
}

#bookSilvaTent:hover {
  background-color: var(--color-silva-light);
  outline: 8px solid var(--color-silva-light);
}

#bookTerraTent:hover {
  background-color: var(--color-terra-light);
  outline: 8px solid var(--color-terra-light);
}

#bookAquaTent.active {
  background-color: var(--color-aqua-light);
  outline: 8px solid var(--color-aqua-light);
}
#bookTerraTent.active {
  background-color: var(--color-terra-light);
  outline: 8px solid var(--color-terra-light);
}
#bookSilvaTent.active {
  background-color: var(--color-silva-light);
  outline: 8px solid var(--color-silva-light);
}

.bookingImg {
  max-height: 150px;
  width: 100%;
}

.main-book .rightSide {
  grid-area: rightSide;
}

.main-book {
  display: grid;
  grid-template-areas:
    "leftSide intro"
    "leftSide rightSide"
    "leftSide rightSide";
  gap: var(--gap-l);
  row-gap: var(--gap-s);
}

.form-row {
  margin-bottom: var(--gap-s);
  display: flex;
  flex-direction: column;
}
.form-row label {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row input[type="number"],
.form-row select {
  padding: 10px 12px;
  border: 1px solid var(--color-accent);
  font-family: var(--font-nunito);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-s);
  justify-items: center;
}

.extras {
  border: 1px solid var(--color-accent);
  padding: var(--gap-s);
  margin-bottom: var(--gap-m);
}

.checkbox {
  display: flex;
  margin-bottom: 8px;
  border-radius: 0;
  gap: var(--gap-s);
  align-items: center;
}

/* flat selector for checkbox images (was nested) */
.checkbox img {
  max-width: 16px;
  max-height: 16px;
}

.booking-summary .summary-card {
  background: var(--color-aqua-light);
  padding: var(--gap-m);
  text-align: left;
}

.total-price {
  border: 1px solid var(--color-accent);
  padding: var(--gap-s);
}

.booking-form {
  width: 100%;
}

.bookTentContainer .price {
  margin: 0;
}

/* Om os */

.about-section {
  display: flex;
  flex-direction: row;
  gap: var(--gap-l);
}

/* flat selector for direct divs inside about-section (was nested) */
.about-section div {
  width: 100%;
  height: 100%;
}

.about-section3 {
  display: grid;
  grid-template-areas:
    "img1 img1 img1 img2"
    "img3 img4 img4 img4"
    "img5 img5 img5 img6";
  gap: var(--gap-m);
}

.about-gallery-1 {
  grid-area: img1;
}
.about-gallery-2 {
  grid-area: img2;
}
.about-gallery-3 {
  grid-area: img3;
}
.about-gallery-4 {
  grid-area: img4;
}
.about-gallery-5 {
  grid-area: img5;
}
.about-gallery-6 {
  grid-area: img6;
}

/* Oplev */

.facts-box {
  width: 25%;
  border: 1px solid var(--color-secondary);
  padding: var(--gap-s);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fact-row {
  border-bottom: 1px solid var(--color-secondary);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.explore-section {
  display: flex;
  gap: var(--gap-l);
  justify-content: space-evenly;
}

.places-grid {
  margin-top: var(--gap-s);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap-m);
}

.distance {
  font-weight: bold;
  margin: var(--gap-s) 0;
}

.place-card {
  display: flex;
  gap: var(--gap-s);
  background-color: #fff;
  border: 1px solid var(--color-secondary);
  padding: var(--gap-s);
}

.place-content {
  width: 100%;
}

.place-media {
  width: 100%;
}

.tents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
