body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: url('pictures/bg.jpg') center center / cover no-repeat fixed;
  color: #222;
  line-height: 1.58;
  min-height: 100vh;
  background-color: rgba(245,247,250,0.80); /* strong white tint for contrast */
}
.blur-wrap {
  background: rgba(245,247,250,0.38); /* lighter glassmorphism over body background */
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(40, 60, 120, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 2.2rem;
  position: relative;
}
header.blur-wrap {
  background: rgba(36,69,144,0.3);
  color: #fff;
  padding: 2.5rem 2.2rem 1rem 2.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: none;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.header-text {
  text-align: left;
}
header h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.03em;
}
.subtitle {
  font-size: 1.15rem;
  color: #f9c800;
  font-style: italic;
  margin-bottom: 0.2rem;
  margin-top: 0;
  user-select: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  z-index: 10;
  position: relative;
}
nav a {
  color: #f9c800;
  font-size: 1.13rem;
  font-weight: 600;
  background: rgba(36,69,144,0.04);
  border: none;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 99px;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
nav a:hover {
  background: #f9c800;
  color: #244590;
  text-decoration: underline;
}
.tours-section .blur-wrap {
  background: rgba(250, 252,255,0.38); /* increased white tint for readability */
  box-shadow:none;
  border-radius:16px;
  padding-bottom:2.5rem;
}
.tours {
  max-width: 1080px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
.tours h2 {
  text-align: center;
  color: #244590;
  font-size: 2rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.tour-card {
  display: flex;
  align-items: flex-start;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 2px 12px rgba(80, 100, 160, 0.09);
  margin-bottom: 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.tour-card:hover {
  box-shadow: 0 6px 30px rgba(80, 100, 160, 0.18);
}
.tour-card img {
  width: 240px;
  height: 190px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-right: 3px solid #244590;
  user-select: none;
}
.tour-info {
  padding: 1.3rem 1.8rem;
  flex: 1;
}
.tour-info h3 {
  color: #22477a;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tour-info h3 a {
  color: #22477a;
  text-decoration: none;
}
.tour-info h3 a:hover {
  text-decoration: underline;
}
footer.blur-wrap {
  background: rgba(255,255,255,0.78); /* strong white tint improves readability */
  color: #244590;
  padding: 2rem 1rem;
  margin-top: 4rem;
  border-radius: 18px 18px 0 0;
  box-shadow:none;
  text-align: center;
  user-select: none;
}
.contact h2 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f9c800;
}
.contact a {
  color: #f9c800;
  text-decoration: underline;
  font-weight: 600;
}
.contact p {
  font-size: 1.05rem;
  margin: 0.5rem 0;
}
@media (max-width: 900px) {
  header.blur-wrap {
    flex-direction: column;
    padding: 2.5rem 1.2rem 1rem 1.2rem;
    align-items: flex-start;
  }
  nav {
    gap: 12px;
    margin-top: 16px;
  }
  .tours {
    padding: 0 1rem;
  }
  .tour-card {
    flex-direction: column;
  }
  .tour-card img {
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
    border-right: none;
    margin-bottom: 1rem;
  }
}
/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background-color: transparent;
  color: #f9c800;
  border: none;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 99px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.13s, color 0.13s;
}
.dropbtn:hover {
  background: #f9c800;
  color: #244590;
  text-decoration: underline;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(36, 69, 144, 0.95);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(36,69,144,0.25);
  z-index: 100;
  margin-top: 6px;
  right: 0;
}
.dropdown-content a {
  color: #f9c800;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
}
.dropdown-content a:hover {
  background-color: #f9c800;
  color: #244590;
  text-decoration: underline;
}
.show {
  display: block !important;
}