/* General Styles */
body {
  font-family: 'Bebas Neue', Arial, sans-serif; /* Jurassic Park font */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #dfffd6; /* Light green base background */
  background-image: linear-gradient(rgba(223, 255, 214, 0.8), rgba(223, 255, 214, 0.8)),
    url('https://cdn.pixabay.com/photo/2017/01/20/00/30/jungle-1993405_1280.jpg'); /* High-quality leaf pattern with overlay */
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #333;
}

/* Hero Section */
.hero {
  background: url('https://controlroom.jurassicoutpost.com/app/uploads/2020/06/jo_header_1-1536x439.jpeg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Navigation - Sticky Navbar */
.navbar {
  position: fixed; /* Keeps the navbar at the top */
  top: 0;
  width: 100%;
  background: black; /* Black navbar */
  padding: 10px 20px;
  z-index: 1000; /* Ensures it's above other elements */
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: background 0.3s;
}

.navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Adjusting page content to prevent it from being hidden under navbar */
body {
  padding-top: 60px;
}

/* Section Styles */
.section {
  padding: 50px 20px;
  text-align: center;
  background: white;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 900px;
  border: 2px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Attractions Section */
.attraction-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.attraction {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.attraction:hover {
  transform: scale(1.05);
}

.attraction img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 2px solid black;
}

.attraction h3 {
  background: black;
  color: white;
  padding: 10px 0;
  margin: 0;
}

.attraction p {
  padding: 10px;
  font-size: 1rem;
}

/* Tickets Section */
.cta-button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #333;
}

/* Footer */
.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}
