/* =========================================================
   HLT Service — Tourist Section Styles
   Bruges af /de/ og /en/ sektionerne.
   Genbruger eksisterende design-tokens fra global.css.
   ========================================================= */

/* ---------- LANGUAGE SWITCHER (topbar) ---------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 24px;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
}
.lang-flag:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}
.lang-flag.lang-active {
  opacity: 1;
  background: rgba(255,255,255,0.15);
}
.lang-flag-icon {
  font-size: 16px;
  line-height: 1;
}


/* ---------- TOURIST HERO ---------- */
.tourist-hero {
  background: linear-gradient(135deg, var(--hlt-blue, #003B5C) 0%, #00527d 100%);
  color: #fff;
  padding: 60px 0 50px;
}
.tourist-hero__content {
  max-width: 680px;
}
.tourist-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 16px;
}
.tourist-hero__h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
}
.tourist-hero__sub {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 24px;
}
.tourist-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.tourist-hero__btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--hlt-red, #E31E24);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.tourist-hero__btn-phone:hover {
  background: var(--hlt-red-hover, #C91A1F);
  transform: translateY(-1px);
}
.tourist-hero__btn-phone svg {
  flex-shrink: 0;
}
.tourist-hero__btn-write {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.tourist-hero__btn-write:hover {
  background: rgba(255,255,255,0.25);
}
.tourist-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  opacity: 0.75;
}


/* ---------- TOURIST QUICK HELP CARDS ---------- */
.tourist-section-heading {
  text-align: center;
  margin-bottom: 32px;
}
.tourist-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tourist-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.tourist-card:hover {
  border-color: var(--hlt-blue, #003b5c);
  box-shadow: 0 4px 20px rgba(0, 59, 92, 0.1);
  transform: translateY(-2px);
}
.tourist-card__icon {
  font-size: 36px;
  flex-shrink: 0;
}
.tourist-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
  margin: 0 0 4px;
}
.tourist-card:hover .tourist-card__body h3 {
  color: var(--hlt-blue, #003b5c);
}
.tourist-card__body p {
  font-size: 14px;
  color: var(--hlt-gray-500, #6b7280);
  margin: 0;
  line-height: 1.5;
}
.tourist-card__arrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--hlt-gray-300, #d1d5db);
  flex-shrink: 0;
  margin-left: auto;
  transition: color 0.2s, transform 0.2s;
}
.tourist-card:hover .tourist-card__arrow {
  color: var(--hlt-blue, #003b5c);
  transform: translateX(4px);
}


/* ---------- TOURIST PHOTO STRIP ---------- */
.tourist-photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tourist-photos__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.tourist-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.tourist-photos__item:hover img {
  transform: scale(1.03);
}


/* ---------- TOURIST TRUST ---------- */
.tourist-trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.tourist-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hlt-gray-700, #374151);
}
.tourist-trust__item img {
  height: 40px;
  width: auto;
}
.tourist-trust__emoji {
  font-size: 24px;
}

/* Google review pill inside trust grid */
.tourist-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hlt-gray-50, #F9FAFB);
  border: 1.5px solid var(--hlt-gray-200, #E5E7EB);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--hlt-gray-700, #374151);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.tourist-review-pill:hover {
  border-color: var(--hlt-gray-300, #D1D5DB);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tourist-trust__item--reviews {
  flex-basis: 100%;
  justify-content: center;
}


/* ---------- TOURIST RENTAL SECTION ---------- */
.tourist-rental__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.tourist-rental__image {
  border-radius: 12px;
  overflow: hidden;
}
.tourist-rental__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.tourist-rental__text h2 {
  margin-top: 0;
}
.tourist-rental__text p {
  color: var(--hlt-gray-600, #4b5563);
  line-height: 1.6;
  margin-bottom: 20px;
}
.tourist-rental__prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tourist-rental__price-card {
  background: var(--hlt-offwhite, #f7f8fa);
  border: 1px solid var(--hlt-gray-200, #e5e7eb);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}
.tourist-rental__price-label {
  display: block;
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  font-weight: 500;
  margin-bottom: 4px;
}
.tourist-rental__price-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--hlt-dark, #1e293b);
}
.tourist-rental__price-eur {
  display: block;
  font-size: 13px;
  color: var(--hlt-gray-500, #6b7280);
  margin-top: 2px;
}


/* ---------- TOURIST LOCATION ---------- */
.tourist-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tourist-location__info h2 {
  margin-top: 0;
}
.tourist-location__info p,
.tourist-location__info a {
  color: var(--hlt-gray-700, #374151);
  line-height: 1.6;
}
.tourist-location__info a {
  color: var(--hlt-blue, #003b5c);
}
.tourist-location__distances ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.tourist-location__distances li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--hlt-gray-600, #4b5563);
}
.tourist-location__distances li::before {
  content: '→ ';
  color: var(--hlt-red, #E31E24);
  font-weight: 700;
}
.tourist-location__hours {
  margin-top: 20px;
}
.tourist-location__map iframe {
  width: 100%;
  min-height: 350px;
}


/* ---------- TOURIST SERVICE PAGE HERO PHOTO ---------- */
.tourist-service .hero-cl__visual--photo {
  border-radius: 12px;
  overflow: hidden;
}
.tourist-service .hero-cl__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  min-height: 240px;
  max-height: 340px;
}


/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .tourist-hero {
    padding: 40px 0 36px;
  }
  .tourist-hero__h1 {
    font-size: 1.7rem;
  }
  .tourist-hero__btn-phone {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
  .tourist-hero__btn-write {
    width: 100%;
    justify-content: center;
  }
  .tourist-cards {
    grid-template-columns: 1fr;
  }
  .tourist-photos__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tourist-rental__grid {
    grid-template-columns: 1fr;
  }
  .tourist-location__grid {
    grid-template-columns: 1fr;
  }
  .tourist-trust__grid {
    gap: 16px;
  }
  .lang-switcher {
    margin-left: 8px;
    padding-left: 8px;
  }
}
