/* RESET */
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff;
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.brand img {
  height: 36px;
}

/* HERO */
.hero-gallery {
  height: 65vh;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background: linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
  );
  text-align: center;
}

/* PACKAGES */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.package-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #eee;
  text-align: center;
}

.package-card h3 {
  margin-bottom: 6px;
}

.pkg-price {
  font-size: 22px;
  font-weight: 700;
  color: #0066cc;
}
