/* LANGUAGE LAND – main styles */

/* ---------- ROOT + GLOBAL ---------- */

:root {
  --bg: #fff7ed;
  --bg-alt: #fff3e0;
  --ink: #111827;
  --muted: #6b7280;

  --orange-dark: #f97316;
  --orange: #fdba74;
  --teal: #0ea5a6;
  --teal-dark: #0f766e;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffe4d0, #fff7ed 46%, #ffffff);
  background-size: 200% 200%;
  animation: bgBreathe 15s ease infinite alternate;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@keyframes bgBreathe {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.scroll-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #fb923c, #f97316, #0ea5a6);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 999;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section.alt {
  background: rgba(255, 243, 224, 0.5);
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

/* ---------- TYPOGRAPHY UPDATES ---------- */

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange-dark);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head .section-label {
  justify-content: center;
}

.section-head h2, 
.section-head-left h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Slick Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--ink) 20%, var(--orange-dark) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ---------- NAV ---------- */
.site-header {
  position: relative;
  padding-bottom: 40px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 10px;
}

.nav.scrolled {
  background: rgba(255, 247, 237, 0.96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-shell {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand:hover .brand-logo-shell {
  transform: rotate(-4deg) scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255,255,255,0.8);
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  content: "";
}

.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }

/* ---------- HERO ---------- */
.hero {
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.3), transparent 70%);
  top: -200px;
  right: -150px;
  filter: blur(40px);
  pointer-events: none;
  animation: orbitPulse 12s infinite alternate;
}

@keyframes orbitPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-text {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin: 0 0 12px;
  font-weight: 700;
}

.cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--orange-dark);
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn {
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.shimmer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.shimmer-btn:hover::before { left: 100%; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.btn.full-width { width: 100%; }

.ghost-link {
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background 0.2s;
}

.ghost-link:hover { background: rgba(0,0,0,0.05); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(14, 165, 166, 0.3);
  color: var(--teal-dark);
  font-weight: 600;
}

/* Hero Media */
.hero-media {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-video-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #000;
  transform: rotate(-2deg);
  border: 4px solid #fff;
}

.hero-video {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.hero-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transform: rotate(3deg);
  width: 90%;
  justify-self: end;
  z-index: 2;
  margin-top: -50px;
}

.hero-photo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.hero-card-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.floating { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.tilt-on-hover { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.tilt-on-hover:hover { transform: translateY(-6px) scale(1.02); z-index: 10; }

.hero-strip {
  margin-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
}

.hero-strip-inner {
  display: inline-flex;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  animation: strip 40s linear infinite;
  white-space: nowrap;
}

@keyframes strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT (REDESIGNED) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.big-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 30px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255,255,255,0.6);
  padding: 10px 14px;
  border-radius: 12px;
}

.check-icon {
  color: var(--teal);
  font-weight: 800;
  background: rgba(14, 165, 166, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
  padding: 8px;
}

.photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

/* --- FIX FOR MOUNTAIN BAG PHOTO TO SHOW LOGO --- */
.photo-card-bag img {
  object-position: center bottom;
}

.photo-caption {
  padding: 16px 12px 12px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- PROGRAMMES (SLICKER) ---------- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.programme-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.programme-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.programme-card p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange-dark);
}

.programme-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
.programme-note a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }

/* ---------- STORIES ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.story-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: transform 0.3s ease;
}

.story-media { height: 100%; min-height: 200px; }
.story-video, .story-image { width: 100%; height: 100%; object-fit: cover; }

.story-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-body h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

/* Stats */
.beyond-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ---------- CONTACT (ELEGANT) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.socials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: var(--orange);
}

.social-btn.fb:hover { color: #1877f2; }
.social-btn.insta:hover { color: #e1306c; }

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid #fff;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--shadow-strong);
}

.contact-form h3 { margin: 0 0 20px; font-size: 1.4rem; }

.field-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field-group label { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.field-group input, .field-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 40px 0;
  background: #111827;
  color: #f1f5f9;
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.footer-logo { width: 40px; height: 40px; border-radius: 10px; }
.footer-tag { color: #94a3b8; font-size: 0.9rem; }

/* ---------- ANIMATIONS ---------- */
[data-reveal], .programme-card, .story-card, .contact-form-wrap {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.revealed { opacity: 1 !important; transform: translateY(0) !important; }

/* Language Strip Fixed */
.fixed-language-strip {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 100;
}

.lang-pill {
  border: none;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-pill:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.lang-pill.active { background: var(--orange-dark); color: #fff; box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 80px; left: 16px; right: 16px;
    flex-direction: column; background: #fff; padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    opacity: 0; pointer-events: none; transform: translateY(-10px);
    transition: all 0.2s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle { display: block; }
  
  .hero-inner, .about-grid, .programme-grid, .story-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { width: 100%; margin: 0; transform: none; }
  .fixed-language-strip { display: none; }
  
  .socials-container { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 1fr; }
}