/* ============================================================
   OUTING — style.css
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0a0a; color: #f5f3ef; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── Keyframes ── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Floating card base ── */
.float-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ── Pill / Tag ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  color: #f5f3ef;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.pill:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8ff5a;
  flex-shrink: 0;
}
.pill-dark {
  background: #1c1c1c;
  border-color: rgba(255,255,255,0.08);
}

/* ── Floating label ── */
.floating-label {
  position: absolute;
  background: #f5f3ef;
  color: #0a0a0a;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* floating-label relative variant (used in organize section) */
.floating-label-rel {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background: #f5f3ef;
  color: #0a0a0a;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Chat bubble ── */
.chat-bubble {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 16px;
  font-size: 13px;
  color: #f5f3ef;
  max-width: 240px;
}
.chat-bubble-right {
  border-radius: 18px 18px 4px 18px;
  background: #e8ff5a;
  color: #0a0a0a;
  align-self: flex-end;
}

/* ── Scroll hint ── */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,243,239,0.3);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

/* ── Image card ── */
.img-card {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Activity tag ── */
.act-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #f5f3ef;
}

/* ── CTA buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8ff5a;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,255,90,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f5f3ef;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* ── Nav link ── */
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(245,243,239,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: #f5f3ef; }

/* ── Memory card ── */
.memory-card {
  background: #f5f3ef;
  border-radius: 20px;
  padding: 16px;
  color: #0a0a0a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Section gap ── */
.section-gap { padding: 100px 0; }
@media (max-width: 768px) { .section-gap { padding: 64px 0; } }

/* ── Responsive hero floats ── */
@media (max-width: 1024px) { .hero-floats { display: none; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ── Announcement bar ── */
.announcement-bar {
  background: #1a1a1a;
  color: rgba(245,243,239,0.5);
  padding-top: 72px;
  margin-top: 0;
}
.announcement-bar .accent { color: #e8ff5a; }
.announcement-bar a { color: #e8ff5a; text-decoration: none; }

/* ── Navbar buttons (small size override) ── */
.btn-primary-sm  { font-size: 13px; padding: 9px 20px; }
.btn-secondary-sm { font-size: 13px; padding: 9px 20px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section { padding: 80px 24px 60px; }

/* Glow blobs */
.hero-glow-main {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,90,0.06) 0%, transparent 70%);
  top: 10%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-glow-side {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,150,255,0.05) 0%, transparent 70%);
  top: 30%; left: 15%;
  pointer-events: none;
}

/* Floating hero cards */
.hero-float-left-1 {
  position: absolute; left: 5%; top: 15%; width: 220px;
  animation: float 6s ease-in-out infinite;
  --rot: -5deg; transform: rotate(-5deg);
}
.hero-float-left-2 {
  position: absolute; left: 3%; top: 45%; width: 180px;
  animation: float 4.5s ease-in-out infinite 1.2s;
  --rot: 3deg; transform: rotate(3deg);
}
.hero-float-right-1 {
  position: absolute; right: 4%; top: 18%; width: 210px;
  animation: float 5s ease-in-out infinite 0.8s;
  --rot: 4deg; transform: rotate(4deg);
}
.hero-float-right-2 {
  position: absolute; right: 6%; top: 50%; width: 190px;
  animation: float 5.5s ease-in-out infinite 2s;
  --rot: -3deg; transform: rotate(-3deg);
}

/* Hero card inner wrappers */
.hero-card-kayak {
  height: 160px;
  background: linear-gradient(135deg, #1a3a5c, #0d2a45);
}
.hero-card-kayak-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2a5080 0%, #0a1e35 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-minigolf {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
}
.hero-card-minigolf-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8ff5a;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.hero-card-karaoke { height: 150px; background: #1a1a1a; }
.hero-card-karaoke-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2d1a4a, #1a0d30);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-dinner {
  background: #f5f3ef;
  border-radius: 16px;
  padding: 14px;
}
.hero-card-dinner-avatars { display: flex; }
.hero-card-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #f5f3ef;
  margin-right: -6px;
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-avatar-1 { background: #ff6b6b; }
.hero-card-avatar-2 { background: #4ecdc4; }
.hero-card-avatar-3 { background: #ffe66d; }

/* Hero text */
.hero-text-wrapper { max-width: 720px; }
.hero-pill-row { animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s; }
.hero-headline { font-size: clamp(56px,10vw,110px); letter-spacing: -3px; animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.2s; }
.hero-headline-accent { color: #e8ff5a; }
.hero-subtext { font-size: 18px; color: rgba(245,243,239,0.55); line-height: 1.7; max-width: 460px; margin-inline: auto; animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.35s; }
.hero-cta-row { animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) both 0.48s; }
.hero-pills-row { animation: fadeIn 1s ease both 0.7s; }
.hero-scroll-hint { animation: fadeIn 1.2s ease both 1.2s; }

/* ============================================================
   EXPERIENCES SECTION
   ============================================================ */
.experiences-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.experiences-headline { font-size: clamp(42px,7vw,80px); letter-spacing: -2px; line-height: 1.05; max-width: 700px; margin: 0 auto 60px; }
.experiences-headline-accent { color: #e8ff5a; }
.experiences-grid { position: relative; min-height: 480px; }
.experiences-cards-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Experience cards */
.exp-card-gokart {
  background: linear-gradient(135deg, #1a0d30, #2d1a4a);
  border-radius: 24px; padding: 24px;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  animation: float 6.5s ease-in-out infinite;
  --rot: -2deg; transform: rotate(-2deg);
}
.exp-card-nightout {
  background: linear-gradient(135deg, #1a2a1a, #0d1a0d);
  border-radius: 24px; padding: 24px;
  aspect-ratio: 2/3;
  display: flex; flex-direction: column; justify-content: flex-end;
  margin-top: -30px;
  animation: float 5.5s ease-in-out infinite 1s;
  --rot: 1deg; transform: rotate(1deg);
}
.exp-card-kayaking {
  background: linear-gradient(135deg, #0d2a3a, #1a4a5c);
  border-radius: 24px; padding: 24px;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  animation: float 7s ease-in-out infinite 0.5s;
  --rot: 2deg; transform: rotate(2deg);
}
.exp-card-title { font-size: 22px; margin-bottom: 6px; }
.exp-card-desc { font-size: 13px; color: rgba(245,243,239,0.5); margin-bottom: 12px; }

/* Floating labels in experiences */
.exp-label-music {
  top: -20px; left: 8%;
  animation: float 4s ease-in-out infinite;
}
.exp-label-festivals {
  top: -20px; right: 10%;
  animation: float 5s ease-in-out infinite 1.5s;
  background: #e8ff5a;
}
.exp-label-food {
  bottom: -10px; left: 15%;
  animation: float 6s ease-in-out infinite 0.8s;
}

/* ============================================================
   ORGANIZE SECTION
   ============================================================ */
.organize-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.organize-headline { font-size: clamp(42px,7vw,80px); letter-spacing: -2px; line-height: 1.05; max-width: 700px; margin: 0 auto 16px; }
.organize-headline-accent { color: #e8ff5a; }
.organize-label-matt { animation: float 5s ease-in-out infinite; }
.organize-label-sarah { animation: float 4.5s ease-in-out infinite 1s; }
.organize-label-andrew { animation: float 6s ease-in-out infinite 0.5s; }

/* Chat card */
.chat-card {
  max-width: 520px; margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8ff5a, #b8d400);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.chat-name { font-size: 14px; font-weight: 600; color: #f5f3ef; }
.chat-subtitle { font-size: 11px; color: rgba(245,243,239,0.4); }
.chat-time { margin-left: auto; font-size: 11px; color: rgba(245,243,239,0.3); }
.chat-messages { display: flex; flex-direction: column; gap: 10px; }

/* Plan card inside chat */
.plan-card {
  background: #252525;
  border-radius: 16px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.plan-card-date { font-size: 11px; color: rgba(245,243,239,0.4); margin-bottom: 4px; }
.plan-card-title { font-size: 14px; font-weight: 600; color: #f5f3ef; margin-bottom: 8px; }
.plan-card-friends { font-size: 11px; color: rgba(245,243,239,0.4); margin-bottom: 10px; }
.plan-card-actions { display: flex; gap: 6px; }
.pill-accent { font-size: 11px; padding: 4px 12px; background: #e8ff5a; color: #0a0a0a; border-color: transparent; }
.pill-sm { font-size: 11px; padding: 4px 12px; }

/* ============================================================
   MEMORIES SECTION
   ============================================================ */
.memories-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.memories-headline { font-size: clamp(42px,7vw,72px); letter-spacing: -2px; line-height: 1.05; margin-top: 16px; margin-bottom: 20px; }
.memories-headline-accent { color: #e8ff5a; }
.memories-subtext { font-size: 17px; color: rgba(245,243,239,0.55); line-height: 1.7; max-width: 380px; margin-bottom: 32px; }

/* Memory card floating wrapper */
.memory-float-wrapper { position: relative; width: 340px; height: 300px; }
.memory-card-main { position: absolute; top: 0; left: 0; width: 320px; animation: float 6s ease-in-out infinite; }
.memory-photo {
  border-radius: 12px; overflow: hidden;
  margin-bottom: 12px; height: 140px;
  background: linear-gradient(135deg, #ff9a9e, #fecfef, #a18cd1);
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}
.memory-avatars { display: flex; margin-right: 4px; }
.memory-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #f5f3ef;
  margin-left: -6px;
}
.memory-avatar:first-child { margin-left: 0; }
.memory-avatar-1 { background: #ff6b6b; }
.memory-avatar-2 { background: #4ecdc4; }
.memory-avatar-3 { background: #ffe66d; }
.memory-avatar-4 { background: #a29bfe; }
.memory-event-title { font-size: 14px; font-weight: 700; color: #0a0a0a; }
.memory-event-date { font-size: 11px; color: #888; margin-top: 2px; }
.memory-event-loc { font-size: 11px; color: #aaa; margin-top: 2px; }
.memory-actions { margin-top: 10px; display: flex; justify-content: space-between; align-items: center; }
.memory-chip {
  font-size: 11px; color: #0a0a0a;
  background: #f0f0f0;
  padding: 3px 10px; border-radius: 999px; cursor: pointer;
}
.memory-card-bg {
  position: absolute; top: 20px; left: 20px;
  width: 320px; height: 200px;
  background: #1e1e1e;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: -1; transform: rotate(3deg);
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.activities-headline { font-size: clamp(42px,7vw,80px); letter-spacing: -2px; line-height: 1.05; max-width: 800px; margin: 0 auto 50px; }
.activities-headline-accent { color: #e8ff5a; }

/* Activity card */
.act-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.act-card:hover { background: #1e1e1e; transform: translateY(-4px); }
.act-card-emoji { font-size: 32px; }
.act-card-title { font-size: 14px; font-weight: 600; color: #f5f3ef; }
.act-card-desc { font-size: 12px; color: rgba(245,243,239,0.45); }
.act-card-tag { font-size: 10px; padding: 2px 8px; }

/* CTA activity card */
.act-card-cta {
  background: #e8ff5a;
  border-radius: 20px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.act-card-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,255,90,0.3); }
.act-card-cta-title { font-size: 14px; font-weight: 700; color: #0a0a0a; }
.act-card-cta-desc { font-size: 12px; color: rgba(10,10,10,0.6); }
.act-card-cta-link { margin-top: auto; font-size: 13px; font-weight: 600; color: #0a0a0a; }

/* Activities floating tags */
.act-float-tag {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  font-size: 13px;
}
.act-float-tag-1 { animation: float 5s ease-in-out infinite; }
.act-float-tag-2 { animation: float 6s ease-in-out infinite 1s; }
.act-float-tag-3 { animation: float 4.5s ease-in-out infinite 0.3s; }
.act-float-tag-4 { animation: float 5.5s ease-in-out infinite 1.8s; }

/* ============================================================
   JOIN CTA SECTION
   ============================================================ */
.join-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.join-headline { font-size: clamp(56px,9vw,96px); letter-spacing: -3px; line-height: 1.0; margin-bottom: 40px; }

/* Illustration cards */
.illus-card-dance {
  background: linear-gradient(135deg, #6c3483, #2e86de);
  border-radius: 24px; padding: 32px 24px; text-align: center;
  animation: float 5s ease-in-out infinite;
}
.illus-card-goodvibes {
  background: linear-gradient(135deg, #1abc9c, #0d6e55);
  border-radius: 24px; padding: 24px; text-align: center;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite 1s;
}
.illus-card-active {
  background: linear-gradient(135deg, #e67e22, #d35400);
  border-radius: 24px; padding: 24px; text-align: center;
  margin-top: 20px;
  animation: float 4.5s ease-in-out infinite 0.5s;
}
.illus-card-celebrate {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 24px; padding: 32px 24px; text-align: center;
  animation: float 5.5s ease-in-out infinite 1.5s;
}
.illus-emoji-lg { font-size: 60px; margin-bottom: 8px; }
.illus-emoji-md { font-size: 48px; margin-bottom: 8px; }
.illus-label { font-size: 12px; color: rgba(255,255,255,0.7); }

/* QR section */
.qr-wrapper {
  background: #f5f3ef; border-radius: 20px;
  padding: 20px; display: inline-block; margin-bottom: 24px;
}
.qr-box {
  width: 120px; height: 120px;
  background: #0a0a0a; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.qr-label { font-size: 11px; color: #888; margin-top: 8px; font-family: Inter, sans-serif; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { color: #f5f3ef; }
.footer-email { font-size: 13px; color: rgba(245,243,239,0.4); line-height: 1.6; }
.footer-social { margin-top: 12px; display: flex; gap: 8px; }
.footer-social .pill { font-size: 12px; padding: 5px 12px; }
.footer-col-label {
  font-size: 12px; font-weight: 600;
  color: rgba(245,243,239,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-link { font-size: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(245,243,239,0.25); }
