/* ============================================================
   ROCKERS EXPLORERS HUB — SHARED STYLESHEET
   rockersexplorer.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --green:      #1B6B2F;
  --green2:     #145524;
  --green3:     #0E3D1A;
  --green-lt:   #2A8A40;
  --yellow:     #F5D000;
  --yellow-lt:  #FFE033;
  --yellow-dk:  #C9A800;
  --earth:      #1A1A0F;
  --earth2:     #252515;
  --cream:      #F9F6EE;
  --cream2:     #F0EBE0;
  --white:      #FFFFFF;
  --muted:      #6B7B6E;
  --muted2:     #A8B5A0;
  --border:     rgba(255,255,255,0.1);
  --border-lt:  rgba(27,107,47,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--earth);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}
h4, h5 { font-family: 'Inter', sans-serif; }

.serif { font-family: 'Playfair Display', serif; text-transform: none; letter-spacing: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 12px;
  display: block;
}
.eyebrow.light { color: var(--yellow); }
.eyebrow.green { color: var(--green); }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-dark  { background: var(--earth); color: var(--cream); }
.section-earth2 { background: var(--earth2); color: var(--cream); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}
.section-green .section-sub,
.section-dark  .section-sub { color: rgba(255,255,255,0.7); }

/* ── GREEN RULE ── */
.rule {
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}
.rule.green { background: var(--green); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-yellow { background: var(--yellow); color: var(--earth); }
.btn-yellow:hover { background: var(--yellow-lt); transform: translateY(-1px); }

.btn-green  { background: var(--green); color: var(--white); }
.btn-green:hover  { background: var(--green-lt); transform: translateY(-1px); }

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-outline-yellow:hover { background: var(--yellow); color: var(--earth); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 15px;
  padding: 16px 36px;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.badge-yellow { background: rgba(245,208,0,0.15); color: var(--yellow-dk); border: 1px solid rgba(245,208,0,0.3); }
.badge-green  { background: rgba(27,107,47,0.12); color: var(--green); border: 1px solid rgba(27,107,47,0.25); }
.badge-white  { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }

/* ── DESTINATION CARD ── */
.dest-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  border: 2px solid transparent;
}
.dest-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px rgba(27,107,47,0.18);
  border-color: var(--yellow);
}
.dest-card:hover .dest-card-img::after {
  background: linear-gradient(to top, rgba(14,61,26,0.85) 0%, rgba(245,208,0,0.08) 50%, transparent 100%);
}

.dest-card-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--green3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.dest-card-img-ph { font-size: 40px; opacity: 0.2; }
.dest-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,61,26,0.7) 0%, transparent 50%);
}
.dest-card-body { padding: 20px; }
.dest-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--earth); margin-bottom: 6px;
}
.dest-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(27,107,47,0.1); }
.service-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; color: var(--earth); margin-bottom: 10px; letter-spacing: 0.5px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border-lt);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(27,107,47,0.12); }
.product-img {
  width: 100%; aspect-ratio: 1;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-direction: column;
}
.product-img-ph { font-size: 36px; opacity: 0.3; }
.product-img-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.product-body { padding: 18px 20px; }
.product-name { font-size: 15px; font-weight: 700; color: var(--earth); margin-bottom: 4px; }
.product-price { font-size: 16px; font-weight: 700; color: var(--green); }
.product-btn {
  width: 100%; margin-top: 14px; padding: 10px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.product-btn:hover { background: var(--green-lt); }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(26,26,15,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,208,0,0.15);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  border: 2px solid var(--yellow);
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white); letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1.1;
}
.nav-logo-sub {
  font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(249,246,238,0.7);
  transition: color 0.2s; padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--earth) !important;
  padding: 9px 20px !important; border-radius: 4px !important;
  border-bottom: none !important; font-size: 11px !important;
}
.nav-cta:hover { background: var(--yellow-lt) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); display: block; border-radius: 2px; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer { background: var(--green3); color: var(--cream); padding: 64px 0 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow);
  margin-bottom: 10px;
}
.footer-brand-desc { font-size: 14px; color: rgba(249,246,238,0.65); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(249,246,238,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 13px; color: rgba(249,246,238,0.4); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 13px; color: rgba(249,246,238,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--yellow); }

/* ════════════════════════════════════════
   PAGE HERO
   ════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--green3);
  color: var(--cream);
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 80% 60%, rgba(27,107,47,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px); font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p {
  font-size: 18px; color: rgba(249,246,238,0.75);
  max-width: 560px; line-height: 1.8;
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(26,26,15,0.99); padding: 24px 20px; gap: 18px; border-bottom: 1px solid rgba(245,208,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding: 0 20px; }
  .page-hero { padding: 120px 0 56px; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .btn { padding: 12px 24px; font-size: 12px; }
  /* Hero CTA visible above fold at 375px */
  .hero-badge { margin-bottom: 14px; font-size: 10px; padding: 6px 14px; }
  .hero h1 { font-size: clamp(36px, 9vw, 48px); margin-bottom: 10px; }
  .hero h1 span { font-size: clamp(36px, 9vw, 48px); }
  .hero-tagline { font-size: 14px; margin-bottom: 14px; }
  .hero-desc { font-size: 14px; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; }
  /* Destination cards — single column on small screens */
  .destinations-grid { grid-template-columns: 1fr !important; }
  /* Testimonial cards — full width */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card { padding: 28px 20px 20px; }
  /* Trust strip — wrap tightly */
  .trust-strip-inner { gap: 12px; padding: 0 10px; }
  .trust-item { font-size: 11px; }
  .trust-divider { display: none; }
}
