@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&display=swap');

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

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background-color: #f4fafa;
  color: #333;
  line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
  background: #006D77;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
}

nav ul li a:hover {
  color: #00aaff;
  background-color: rgba(255, 255, 255, 0.15);
}

.language-selector {
  margin-top: 8px;
}

.language-selector button {
  background-color: #006D77;
  color: #fff;
  border: none;
  padding: 6px 10px;
  margin: 2px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.language-selector button:hover {
  background-color: #005f68;
}

main {
  padding: 20px 12px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 35px;
  scroll-margin-top: 120px;
}

section h2 {
  font-size: 1.4rem;
  color: #006D77;
  border-bottom: 3px solid #006D77;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.banner {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.tour-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tour-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.tour-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tour-info {
  padding: 16px;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-info h3 {
  font-size: 1.2rem;
  color: #006D77;
  margin-bottom: 12px;
}

.tour-info p {
  flex-grow: 1;
  color: #555;
  margin-bottom: 10px;
  font-size: 1rem;
}

.tour-info a {
  display: inline-block;
  text-decoration: none;
  background-color: #006D77;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s;
}

.tour-info a:hover {
  background-color: #005f68;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 24px 12px;
  font-size: 1rem;
}

/* ================================ */
/* 🎯 IMPROVED RESPONSIVE (Max-width 600px) */
/* ================================ */
@media (max-width: 600px) {

  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  header h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }

  nav ul li a {
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: 10px 14px;
  }

  .language-selector {
    margin-top: 10px;
    width: 100%;
  }

  .language-selector button {
    padding: 10px;
    font-size: 16px;
    width: 30%;
    min-width: 90px;
  }

  .banner img {
    height: 200px;
    object-fit: cover;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .tour-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-item img {
    height: 200px;
  }

  .tour-info h3 {
    font-size: 1.3rem;
  }

  .tour-info p {
    font-size: 1.05rem;
  }

  .tour-info a {
    padding: 14px 20px;
    font-size: 1rem;
    font-size: 1.05rem;
  }

  #map {
    height: 300px;
  }

  footer {
    font-size: 0.95rem;
    padding: 18px 10px;
  }
}
.banner {
  position: relative;
  text-align: center;
  color: red;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 300px;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.banner-overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
