html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f1e9;
  color: #2b2b2b;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.shrink {
  padding: 8px 50px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 22px;
  color: #2e5e3e;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #2b2b2b;
}

.nav-btn {
  background: #2e5e3e;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
}

/* ===== HERO ===== */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(46,94,62,0.75), rgba(46,94,62,0.75)),
  url("images/hero.jpg") center/cover no-repeat;
  color: white;
}

.hero h2 {
  font-size: 42px;
}

.hero p {
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  background: white;
  color: #2e5e3e;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  border: 2px solid white;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
}

.call-btn:hover {
  background: white;
  color: #2e5e3e;
}

/* ===== FEATURES ===== */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: #e8efe6;
  flex-wrap: wrap;
}

.feature {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ===== ABOUT ===== */
.about {
  padding: 90px 60px;
}

.about-wrapper {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.about-left, .about-right {
  flex: 1;
  min-width: 300px;
}

.about-img {
  width: 100%;
  border-radius: 12px;
}

.info-block {
  margin-bottom: 25px;
}

.info-block h3 {
  color: #2e5e3e;
}

/* ===== SERVICES ===== */
.services {
  padding: 90px 20px;
  background: #e8efe6;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  width: 300px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

/* ===== PACKAGES (FIXED FINAL) ===== */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px;
  max-width: 1100px;
  margin: auto;
}

@media (max-width: 900px) {
  .packages {
    grid-template-columns: 1fr;
  }
}

.package {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 420px;
  position: relative;
}

.package h3 {
  color: #2e5e3e;
}

.package h4 {
  color: #444;
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  flex-grow: 1;
}

.package ul li {
  margin-bottom: 8px;
}

.package-desc {
  margin-top: auto;
  font-size: 14px;
  color: #555;
}

/* FEATURED */
.featured {
  border: 2px solid #2e5e3e;
}

.featured-blue {
  border: 2px solid #4da6ff;
}

/* BADGE */
.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e5e3e;
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
}

.badge.blue {
  background: #4da6ff;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 40px;
}

.secondary {
  border: 2px solid #2e5e3e;
  color: #2e5e3e;
}

/* ===== FAQ ===== */
.faq {
  padding: 60px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 25px;
}

/* ===== BOOKING ===== */
.checkout {
  display: flex;
  gap: 40px;
  padding: 60px;
  flex-wrap: wrap;
}

.checkout-left {
  flex: 2;
}

.checkout-right {
  flex: 1;
}

.checkout input,
.checkout select,
.checkout textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #2e5e3e;
  color: white;
  border: none;
  border-radius: 6px;
}

.summary-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.hidden {
  display: none;
}

/* ===== FOOTER ===== */
footer {
  background: #2e5e3e;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ===== ANIMATIONS ===== */
.about,
.services,
.features {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.about.show,
.services.show,
.features.show {
  opacity: 1;
  transform: translateY(0);
}

.page-title {
  text-align: center;
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;   /* centers horizontally */
  justify-content: center;
}

.page-title h2 {
  margin: 0;
  text-align: center;
}

.page-title p {
  margin-top: 10px;
  text-align: center;
  max-width: 600px;   /* makes it look cleaner */
}

/* ===== PAGE TITLE ANIMATION ===== */
.page-title {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.page-title.show {
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL: stagger effect */
.page-title h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.page-title p {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease 0.2s;
}

.page-title.show h2,
.page-title.show p {
  opacity: 1;
  transform: translateY(0);
}

.page-title,
.package,
.faq-item,
.cta {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.page-title.show,
.package.show,
.faq-item.show,
.cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SIMPLE CLEAN ANIMATIONS ===== */

/* KEYFRAME */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PAGE TITLES */
.page-title h2 {
  animation: fadeUp 0.6s ease forwards;
}

.page-title p {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

/* PACKAGE CARDS */
.package {
  animation: fadeUp 0.6s ease forwards;
}

/* STAGGER CARDS (clean effect) */
.package:nth-child(1) { animation-delay: 0.1s; }
.package:nth-child(2) { animation-delay: 0.2s; }
.package:nth-child(3) { animation-delay: 0.3s; }

/* CTA BUTTON */
.cta {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
}