:root {
  --primary-green: #375a0a;
  --muted-yellow: #e6eb51;
  --light-cream: #f9f1dc;
  --earthy-brown: #a77e55;
  --vibrant-pink: #c5235a;
  --charcoal-black: #010101;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--charcoal-black);
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(90deg, #a77e55, #8b5e3c) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  color: white !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--muted-yellow) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.logo {
  width: auto;
  height: 70px;
  object-fit: cover;
}

.hero {
  height: 100vh;
  background-image: url(images/IMG_8087-min.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  color: #f8f9fa;
}

.about-image {
  width: 100%;
  height: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section {
  padding: 80px 0;
}

.section-light {
  background: var(--light-cream);
}

.section-title {
  color: var(--primary-green);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--muted-yellow);
  margin: 1rem auto;
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.attraction-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--primary-green);
}

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

.attraction-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.attraction-card i {
  color: var(--muted-yellow);
  font-size: 2rem;
  margin-bottom: 1rem;
}

#gallery img {
  height: 90vh;
  object-fit: cover;
  border-radius: 10px;
}

/* Pricing Section */
#pricing {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#pricing .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-green);
  font-weight: 700;
}

#pricing h3 {
  font-size: 2rem;
  font-weight: 600;
}

/* Cards */
#pricing .card {
  border: 2px solid var(--primary-green);
  border-radius: 15px;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

#pricing .card-title {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
}

#pricing .card-text {
  color: var(--charcoal-black);
  font-size: 0.9rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: none;
}

.contact-info {
  background: var(--primary-green);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info i {
  color: var(--muted-yellow);
  margin-right: 0.5rem;
}

footer {
  background: var(--earthy-brown);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    background-attachment: scroll;
  }

  .navbar li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-text {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }

  .btn-primary {
    font-size: 0.7rem;
  }

  .btn-hero {
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
