/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0a0f0a;
  --primary:      #1a3a1a;
  --accent:       #c8a84b;
  --accent-dim:   rgba(200, 168, 75, 0.15);
  --text:         #f0ede6;
  --text-muted:   #7a7a6a;
  --font:         'Heebo', sans-serif;
  --max-w:        1200px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.activity-card:nth-child(2).reveal { transition-delay: 0.12s; }
.activity-card:nth-child(3).reveal { transition-delay: 0.24s; }

/* ─── Navigation ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3.5rem;
  background: transparent;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.5s;
}
#navbar.scrolled {
  background: rgba(10, 15, 10, 0.92);
  padding: 1.1rem 3.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.75);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
}

/* ─── Hero ─────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: url('../Growth Begins with Light.jpeg') center center / cover no-repeat;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 10, 0.88) 0%,
    rgba(10, 15, 10, 0.4)  40%,
    rgba(0, 0, 0, 0.15)    100%
  );
  z-index: 2;
  transition: background 0.7s ease;
}
.hero-overlay.loop-transition {
  background: rgba(10, 15, 10, 0.97);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 3.5rem 16rem;
  animation: heroReveal 1.2s var(--ease) 0.4s both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.hero-cta-btn:hover {
  background: #dbb85c;
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── About ─────────────────────────────────────────────── */
#about {
  padding: 9rem 3.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
  margin-inline-start: 0;
}

.about-body {
  max-width: 660px;
}
.about-body p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.75);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-quote {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  border-inline-start: 3px solid var(--accent);
  background: var(--accent-dim);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  border-radius: 0 4px 4px 0;
}
.about-quote span {
  color: var(--accent);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
}

/* ─── Activities ────────────────────────────────────────── */
#activities {
  padding: 7rem 3.5rem 9rem;
  background: linear-gradient(to bottom, var(--bg), #0d150d, var(--bg));
}

.section-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
}

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.activity-card {
  background: #0f180f;
  border: 1px solid rgba(200, 168, 75, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.activity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 168, 75, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 168, 75, 0.15);
}

.card-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image--night {
  background:
    radial-gradient(ellipse at 60% 20%, rgba(10, 40, 10, 0.6) 0%, transparent 70%),
    linear-gradient(to bottom, #030808 0%, #051205 35%, #0a1a0a 65%, #030808 100%);
}
.card-image--corporate {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(200, 168, 75, 0.12) 0%, transparent 60%),
    linear-gradient(to bottom, #080f05 0%, #142810 35%, #1a3a12 65%, #0a1205 100%);
}
.card-image--workshop {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200, 168, 75, 0.18) 0%, transparent 55%),
    linear-gradient(to bottom, #0a0f0a 0%, #142814 40%, #1c401c 70%, #0a1a0a 100%);
}
.card-image:hover .card-image-inner { transform: scale(1.08); }

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.activity-card:hover .card-photo { transform: scale(1.04); }

.card-image-inner {
  text-align: center;
  transition: transform 0.5s var(--ease);
}
.card-icon {
  font-size: 4.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(200, 168, 75, 0.3));
  opacity: 0.85;
}

.card-body {
  padding: 1.75rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.card-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.card-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ─── Booking / CTA ─────────────────────────────────────── */
#booking {
  background: linear-gradient(135deg, #0b1f0b 0%, #0f2010 50%, #0a1a08 100%);
  padding: 9rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 168, 75, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(26, 58, 26, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.booking-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.booking-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}
.booking-headline span { color: var(--accent); }

.booking-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.65);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.booking-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover {
  background: #dbb85c;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(240, 237, 230, 0.3);
  color: var(--text);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(240, 237, 230, 0.05);
}
.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── Contact Form ──────────────────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: right;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(240, 237, 230, 0.04);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 300;
  direction: rtl;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 237, 230, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(200, 168, 75, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

.btn-submit {
  align-self: flex-start;
  padding: 0.95rem 2.8rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.btn-submit:hover {
  background: #dbb85c;
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { align-self: stretch; text-align: center; }
}

/* ─── Footer ────────────────────────────────────────────── */
#footer {
  background: #050a05;
  padding: 3.5rem;
  border-top: 1px solid rgba(200, 168, 75, 0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.footer-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--accent); }
.footer-socials svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  opacity: 0.75;
}
.footer-copy {
  font-size: 0.78rem;
  color: #3a3a30;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .activity-card:nth-child(3) { grid-column: span 2; }
  .card-image { aspect-ratio: 16/9; }
}

@media (max-width: 680px) {
  /* Navbar — smaller text so links don't stack */
  #navbar { padding: 1.25rem 1.5rem; }
  #navbar.scrolled { padding: 0.85rem 1.5rem; }
  .logo { font-size: 1rem; }
  .nav-links { gap: 0.65rem; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.02em; }
  .nav-cta { padding: 0.3rem 0.65rem; font-size: 0.78rem !important; }

  /* Hero — stack text above video instead of overlaying */
  #hero {
    height: auto;
    min-height: unset;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-bg-fallback { display: none; }
  #hero-video {
    position: relative;
    inset: auto;
    width: 100%;
    height: 56vw;
    min-height: 220px;
    object-fit: cover;
    z-index: 0;
    order: 2;
  }
  .hero-overlay { display: none; }
  .hero-content {
    position: relative;
    order: 1;
    padding: 6rem 1.5rem 2.5rem;
    background: var(--bg);
    z-index: 3;
  }
  .hero-scroll-hint { display: none; }

  .hero-tagline { max-width: 100%; }
  #about { padding: 6rem 1.5rem; }
  #activities { padding: 5rem 1.5rem 6rem; }
  #booking { padding: 6rem 1.5rem; }
  #footer { padding: 2.5rem 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .activity-card:nth-child(3) { grid-column: span 1; }
  .card-image { aspect-ratio: 3/2; }
  .booking-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .about-quote { padding: 1.75rem 1.5rem; }
}
