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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 24px;
  margin-bottom: 0;
}

.logo span {
  color: var(--primary-color);
}

.logo a {
  color: var(--dark-color);
}

.logo a:hover {
  text-decoration: none;
  color: var(--dark-color);
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

/* nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
} */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.header-alt {
  background-color: white;
}

/* ====== HERO SECTION ====== */
.title {
  color: rgb(18, 17, 17);
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.hero-text {
  max-width: 750px;
  padding: 30px;
}

.hero-text h1 {
  font-size: 50px;
  margin: auto;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  margin: auto;
  margin-bottom: 30px;
}

/* Hero Section */
.hero {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #333;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-image a:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-text > p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #6b7280;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.feature-icon.blue {
  background-color: #4f46e5;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Vision Mission Section */
.vision-mission {
  background-color: #1e1b4b;
  color: white;
  padding: 5rem 0;
}

.vm-section {
  margin-bottom: 3rem;
}

.vm-section:last-child {
  margin-bottom: 0;
}

.vm-section h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.highlight {
  color: #f59e0b;
}

.vm-section > p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vm-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vm-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.vm-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vm-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Destinations Section */
.destinations {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.destinations h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.destinations h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #4f46e5;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card a:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

.card-content h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.card-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-detail {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-detail:hover {
  background-color: #4338ca;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .vm-icons {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .vm-section h3 {
    font-size: 2rem;
  }

  .destinations h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

.hero {
  padding: 2rem 0;
}

.about,
.vision-mission,
.destinations {
  padding: 3rem 0;
}

.hero h2 {
  font-size: 1.5rem;
}

.about-text h3 {
  font-size: 1.5rem;
}
