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

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  background: url('image1.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 3;
}
.navbar h1 a {
  color: #ffd700;
  text-decoration: none;
  font-size: 24px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffd700;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #ffd700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffd700;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #e6c200;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
}


.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.destinations-section {
  padding: 80px 10%;
  background-color: #f8f8f8;
  text-align: center;
}

.destinations-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  margin: 16px;
  font-size: 20px;
  color: #333;
}

.destination-card p {
  margin: 0 16px 20px;
  font-size: 14px;
  color: #666;
}

.activities-section {
  padding: 80px 10%;
  background-color: #ffffff;
  text-align: center;
}

.activities-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.activity-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.activity-card span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.activity-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.activity-card p {
  font-size: 14px;
  color: #030000;
}
.activities-section {
 background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
  color: #333;
}

.testimonials-section {
  padding: 80px 10%;
  background: #f4f4f4;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.newsletter-section {
  background: linear-gradient(to right, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 80px 10%;
}

.newsletter-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-section p {
  font-size: 16px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  width: 280px;
  max-width: 90%;
}

.newsletter-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #e6c200;
}
.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .navbar ul li a {
    font-size: 16px;
  }

  .navbar h1 a {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page-hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }
}
/* Desktop: hide hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
  }

  #nav-links.show {
    display: flex;
  }

  #nav-links li a {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
}
.navbar ul li a.active {
  color: #ffd700;
  font-weight: bold;
}
