/* Tour card images (.media-1) — fixed 3:4 aspect ratio */
.media-1 a.d-block {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
}
.media-1 a.d-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

/* Destination carousel (.media-thumb) — fixed 3:4 aspect ratio */
.media-thumb {
  aspect-ratio: 3 / 4;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Tour detail — main image */
.tour-main-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.tour-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contact page social icons */
.contact-social li {
  display: inline-block;
}
.contact-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1A374D;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.contact-social li a:hover {
  background-color: #6998AB;
  color: #ffffff;
}

/* Mobile menu header layout */
.site-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-mobile-menu-header .lang-switcher {
  margin-left: 0;
}

/* Language switcher buttons */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active {
  background: #fff;
  color: #1a374d;
  border-color: #fff;
}
/* Mobile menu — light background, needs dark buttons */
.site-mobile-menu .lang-btn {
  color: rgba(26, 55, 77, 0.8);
  border-color: rgba(26, 55, 77, 0.35);
}
.site-mobile-menu .lang-btn.active {
  background: #1a374d;
  color: #fff;
  border-color: #1a374d;
}

/* Tour detail — gallery thumbnails */
.tour-gallery-thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.tour-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
