body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
  'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f0f0f0;
  color: #2E354E;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #2E354E;
  color: white;
}

.logo-img {
  height: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #FFD15C;
}

.nav-links a.active {
  color: #FFD15C;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFD15C;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;

  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
}

.footer-content {
  background-color: #2E354E;
  color: white;
  padding: 1rem 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 1rem;
}

.footer-left {
  flex: 1;
  font-size: 0.95rem;
  text-align: left;
}

.footer-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
  border-radius: 50%;
  background-color: white;
  padding: 6px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-icon:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    text-align: center;
  }
}

.home-hero {
  background: url('../assets/header/home.jpg') center/cover no-repeat;
  color: white;
  height: 90vh;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.home-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.home-hero .hero-title,
.home-hero .subtitle,
.home-hero .intro,
.home-hero .cta-button {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}

.home-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #FFD15C;
}

.home-hero .brand {
  margin-top: 0rem;
  font-size: 5rem;
  display: inline-block;
}

.home-hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  margin-top: 1.5rem;
}

.home-hero .intro {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 1s ease both;
}

.cta-button {
  background-color: #FFD15C;
  color: #2E354E;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #2E354E;
  color: white;
}

.destination-section {
  padding: 2rem 1rem;
  background-color: #F7F7F7;
  text-align: center;
}

.destination-carousel-title {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #2E354E;
  margin-bottom: 0.3rem;
}

.destination-carousel-title strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2E354E;
}

.destination-carousel {
  position: relative;
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.destination-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.destination-slide.active {
  opacity: 1;
  z-index: 1;
}

.destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.01));
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  color: white;
  text-align: left;
  box-sizing: border-box;
}

.destination-overlay h2 {
  font-size: 2.5rem;
  color: #FFD15C;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.destination-overlay h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.destination-overlay p {
  font-size: 1rem;
  max-width: 430px;
  line-height: 1.6;
  margin-top: 0.5rem;
}


.destination-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 3;
}

.destination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A8AABF;
  transition: background-color 0.3s;
  cursor: pointer;
}

.destination-dots .dot.active {
  background-color: #2E354E;
}
