* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #CCE9FB;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: #333;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  z-index: 5;
  position: relative;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo p {
  font-family: 'Inknut Antiqua', serif;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.breadcrumb {
  width: 95%;
  max-width: 1000px;
  margin: 20px auto;
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: #0077b6;
}

.breadcrumb span {
  color: #333;
}

.hero-title {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  font-family: 'arial';
  font-weight: 790;
  font-size: 2rem;
  color: #333;
  text-align: left;
}

.hero {
  width: 95%;
  max-width: 1000px;
  margin: 20px auto;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.hero-slider .prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.hero-slider .next {
  right: 20px;
}

.hero-slider button img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.hero-slider button:hover img {
  transform: scale(1.2);
}

.detail {
  width: 90%;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.detail h3 {
  margin-bottom: 15px;
}

.map-section {
  width: 90%;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-section h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.map-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #EC764E;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.map-btn:hover {
  background: #c8512d;
}

.footer {
  background: rgba(76, 96, 109, 1);
  padding: 10px 10px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.footer-about p,
.footer-contact p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #EC764E;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-slider {
    height: 450px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 50px;
    height: 50px;
  }
  .logo p {
    font-size: 18px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-slider {
    height: 350px;
    border-radius: 12px;
  }
  .hero-slider button img {
    width: 30px;
    height: 30px;
  }
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .logo {
    gap: 8px;
    padding-left: 10px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo p {
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 11px;
  }
  .hero-title {
    font-size: 1.2rem;
    text-align: center; 
  }
  .hero-slider {
    height: 250px;
    border-radius: 10px;
  }
  .hero-slider button img {
    width: 25px;
    height: 25px;
  }
  .map-container iframe {
    height: 220px;
  }
}
