/* =========================
   style.css — Purple (#6B2779) + Gold (#FFD700) theme
   ========================= */

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #fffaf0;
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Container helper */
.container { width: min(1200px, 94%); margin: 0 auto; }

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1200;
  border-bottom: 2px solid rgba(107,39,121,0.06);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.logo img { height: 56px; display:block; }

/* Nav links */
.main-nav { margin-left: auto; }
.nav-links { list-style: none; display:flex; gap:18px; align-items:center; }
.nav-links a {
  display:inline-block;
  text-decoration:none;
  color:#6b2779;
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
}
.nav-links a:hover, .nav-links a.active {
  background: #6b2779;
  color: #fff;
}

/* Hamburger */
.hamburger { display:none; background:transparent; border:0; font-size:1.4rem; color:#6b2779; cursor:pointer; }

/* Primary CTA */
.btn-primary {
  background: #6b2779;
  color: #fff;
  padding:10px 16px;
  border-radius:26px;
  font-weight:700;
  border: 2px solid #6b2779;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(107,39,121,0.12); }

/* Secondary/Gold button */
.btn-gold {
  background: #FFD700;
  color: #3b0f3b;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
}

/* Purple translucent button (on hero) */
.btn-purple {
  background: rgba(107,39,121,0.9);
  color: #fff;
  padding: 12px 18px;
  border-radius: 28px;
  text-decoration: none;
}

/* Hero */
.hero, .page-hero { height: 62vh; display:flex; align-items:center; background-size:cover; background-position:center; position:relative;}
.hero-overlay, .page-hero .hero-overlay { width:100%; padding:48px 0; background: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.04)); }
.hero-content { color:#fff; text-align:left; padding-left:10px; max-width:900px; }
.hero-content h1 { font-size:3rem; color:#6b2779; margin-bottom:6px; text-shadow:0 8px 30px rgba(0,0,0,0.08); }
.lead { font-size:1.05rem; color:#3b0f3b; }

/* sections */
.trusted { padding:18px 0; border-top: 1px solid rgba(107,39,121,0.04); border-bottom: 1px solid rgba(107,39,121,0.04); }
.trusted-inner { display:flex; gap:18px; justify-content:space-between; align-items:center; padding:12px 0; flex-wrap:wrap; }
.trusted-item { text-align:center; min-width:140px; }
.trusted-item strong { color:#6b2779; font-size:1.4rem; display:block; }

/* Cards grid */
.cards-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 28px 0 56px 0; }

/* Generic card */
.card, .service-card, .tent-card {
  position: relative;
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  display:flex; align-items:flex-end;
}

/* overlay so text stays visible */
.card-overlay, .service-card .card-overlay, .tent-card .card-overlay {
  width:100%;
  padding:18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.66) 100%);
  color:#fff;
}
.card-overlay h3 { color:#FFD700; font-size:1.25rem; margin-bottom:8px; }
.card-overlay p { font-size:0.95rem; margin-bottom:10px; }

/* actions inside card */
.card-actions { display:flex; gap:10px; align-items:center; }
.btn-card {
  background: #FFD700; color: #3b0f3b; padding:9px 14px; border-radius:24px; border:none; font-weight:700; cursor:pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}
.link-more { color: rgba(255,255,255,0.95); text-decoration:underline; font-weight:600; }

/* hover reveal */
.card:hover, .service-card:hover, .tent-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,0.20); }
.card:hover .btn-card, .service-card:hover .btn-card, .tent-card:hover .btn-card { opacity:1; transform: translateY(0); box-shadow: 0 10px 30px rgba(255,215,0,0.12); }

/* testimonials */
.testimonials { padding: 36px 0; background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(107,39,121,0.02)); }
.testimonial-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:12px; margin-top:12px; }
.testimonial-card { background:#fff; color:#3b0f3b; border-radius:12px; padding:18px; box-shadow:0 8px 24px rgba(0,0,0,0.06); }

/* booking form */
.booking-form { background: #fff; padding:20px; border-radius:12px; margin:28px 0; box-shadow: 0 12px 30px rgba(0,0,0,0.06); color:#3b0f3b; }
.booking-form label { display:block; margin-top:12px; font-weight:700; }
.booking-form input, .booking-form select, .booking-form textarea { width:100%; padding:10px; margin-top:8px; border-radius:8px; border:1px solid rgba(0,0,0,0.08); }

/* summary/message container */
.message-container, .booking-summary, .message-container {
  background: rgba(107,39,121,0.06);
  border-radius:10px; padding:14px; margin-top:12px; color:#3b0f3b;
}

/* footer */
.site-footer { background:#6b2779; color:#FFD700; padding:28px 0; margin-top: 48px; }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap; }
.footer-logo { height:48px; }

/* whatsapp float */
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; width:56px; height:56px; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; border-radius:50%; z-index:1400; box-shadow:0 10px 40px rgba(0,0,0,0.25); text-decoration:none; font-size:1.4rem; }

/* responsive */
@media (max-width: 900px) {
  .nav-links { display:none; position:absolute; top:72px; left:0; right:0; background:#fff; padding:16px 20px; flex-direction:column; }
  .nav-links.show { display:flex; }
  .hamburger { display:block; margin-left: auto; }
  .hero, .page-hero { height: 48vh; }
}
