/* 
  Skaters Nepal - McShannock Inspired Theme
  ===========================================
*/

:root {
  --bg-color: #000000;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.15);
  --surface-color: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.1);
  --accent-color: #FF3366; /* Subtle vibrant accent if needed, mostly we use white/black */
  
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --container-width: 1200px;
  --header-height: 80px;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
  
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 4rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--bg-color);
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: #e0e0e0;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--surface-color);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

/* Reveal Animations */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate="fade-up"].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ FLOATING NAV ═══ */
.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1152px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  transition: top 0.3s ease;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-dot {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mobile-link.cta {
  margin-top: 2rem;
  padding: 12px 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 1.25rem;
}

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 100%), linear-gradient(to bottom, transparent 0%, var(--bg-color) 100%);
}

.hero-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-main);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--text-main);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  display: flex;
  justify-content: space-around;
  padding: 4rem 24px;
  border-bottom: 1px solid var(--border-color);
  max-width: var(--container-width);
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-mono);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: var(--border-color);
}

/* ═══ IMPACT SECTION ═══ */
.impact-section {
  padding: 10rem 0;
}

.impact-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

.impact-heading span {
  color: var(--text-main);
}

.impact-link {
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 4px;
}

.impact-link .arrow {
  transition: transform 0.3s ease;
}

.impact-link:hover .arrow {
  transform: translate(4px, -4px);
}

/* ═══ SPOTS SECTION ═══ */
.spots-section {
  padding: 6rem 0;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.spot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
}

.spot-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
}

.spot-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.spot-card-large .spot-image-wrap {
  aspect-ratio: 16/9;
}

.spot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.spot-card:hover .spot-img {
  transform: scale(1.05);
}

.spot-meta {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.spot-name {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.spot-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ═══ EVENTS SECTION ═══ */
.events-section {
  padding: 8rem 0;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.events-list {
  display: flex;
  flex-direction: column;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding-left 0.3s ease, background-color 0.3s ease;
}

.event-row:first-child {
  border-top: 1px solid var(--border-color);
}

.event-row:hover {
  background-color: var(--surface-color);
  padding-left: 1rem;
  padding-right: 1rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--surface-hover);
  padding: 12px;
  border-radius: var(--radius-md);
  min-width: 80px;
}

.event-day {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  line-height: 1;
}

.event-month {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.event-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.event-location {
  color: var(--text-muted);
}

.event-type {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.event-arrow {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.event-row:hover .event-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══ SERVICES SECTION ═══ */
.services-section {
  padding: 10rem 0;
}

.services-intro {
  margin-bottom: 6rem;
  max-width: 800px;
}

.services-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.services-sub {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  background-color: var(--surface-hover);
}

.service-number {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2rem;
}

.service-name {
  font-size: 1.75rem;
  line-height: 1.2;
}

/* ═══ TESTIMONIALS SECTION ═══ */
.testimonials-section {
  padding: 8rem 0;
  text-align: center;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  height: 300px; /* Adjust based on content */
  display: flex;
  align-items: center;
}

.testimonial-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: all;
}

.testimonial-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-role {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background-color: var(--surface-color);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--surface-hover);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--text-main);
}

/* ═══ TRACKER SECTION (PWA Feature) ═══ */
.tracker-section {
  padding: 8rem 0;
  background-color: var(--surface-color);
  border-radius: 40px;
  margin: 0 24px;
}

.tracker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.tracker-form-wrap {
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--text-main);
}

.tracker-history-wrap {
  display: flex;
  flex-direction: column;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.session-count {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.history-list {
  flex: 1;
  overflow-y: auto;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-muted);
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.session-item {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.session-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.session-spot {
  font-weight: 700;
  font-size: 1.1rem;
}

.session-mood {
  font-size: 1.2rem;
}

.session-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.session-tricks {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* ═══ MARQUEE ═══ */
.marquee-section {
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--surface-color);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  white-space: nowrap;
  padding-right: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 8rem 0 2rem;
}

.footer-top {
  margin-bottom: 6rem;
}

.footer-heading {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.footer-sub {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-weight: 500;
}

.footer-big-text {
  text-align: center;
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin-bottom: 4rem;
  color: var(--surface-color); /* Very subtle */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* PWA INSTALL PROMPT */
.install-prompt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  transition: transform 0.4s var(--ease-spring);
  z-index: 1000;
  max-width: 350px;
}

.install-prompt.show {
  transform: translateY(0);
}

.install-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.install-icon {
  font-size: 2rem;
  background: var(--text-main);
  padding: 8px;
  border-radius: 50%;
}

.install-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.install-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
}

.install-accept {
  background: var(--text-main);
  color: var(--bg-color);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
}

/* ═══ HERO VIDEO SECTION ═══ */
@media (min-width: 900px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    text-align: left;
    max-width: 1200px;
    align-items: center;
    width: 100%;
  }
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-video-wrap {
  width: 100%;
  max-width: 320px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
}

@keyframes floatHeroCard {
  0% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0) rotate(2deg); }
}

.hero-video-card {
  width: 100%;
  aspect-ratio: 9/16;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  animation: floatHeroCard 4s ease-in-out infinite;
}

.hero-video-card:hover {
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.02);
  transition: transform 0.4s var(--ease-spring);
}

.vertical-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #111;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.video-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--text-main);
}

/* ═══ SCHEDULE SECTION ═══ */
.schedule-section {
  padding: 6rem 0;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
}

.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .schedule-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .schedule-header {
    flex: 0 0 35%;
  }
  .schedule-grid {
    flex: 0 0 55%;
  }
}

.schedule-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.schedule-sub {
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.schedule-times {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.time-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-label {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.time-val {
  font-size: 1.5rem;
  font-weight: 700;
}

.time-divider {
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
}

.schedule-days {
  display: flex;
  flex-direction: column;
}

.day-row {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
}

.day-row:first-child {
  border-top: 1px solid var(--border-color);
}

.day-name {
  font-weight: 600;
}

.day-status {
  font-family: var(--font-mono);
}

.day-row.closed {
  color: var(--text-muted);
}

.day-row.closed .day-status {
  color: #FF3366;
}

.day-row.partial .day-status {
  color: #FFAA33;
}

/* ═══ INSTAGRAM MEMBER SHOWCASE ═══ */
.member-showcase {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 24px 3rem;
  margin: 0 -24px 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.member-showcase::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.member-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 80px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring);
}

.member-story:hover {
  transform: translateY(-5px);
}

.story-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #FF3366, #ff9933);
  position: relative;
}

.story-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg-color);
  overflow: hidden;
  background-color: var(--surface-color);
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-name {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-mono);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .spots-grid {
    grid-template-columns: 1fr;
  }
  .spot-card-large {
    grid-template-columns: 1fr;
  }
  .tracker-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    top: 12px;
    width: calc(100% - 24px);
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .stats-bar {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    width: 40%;
  }
  .event-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    position: relative;
  }
  .event-type, .event-arrow {
    display: none;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .tracker-section {
    margin: 0;
    border-radius: 0;
    padding: 6rem 24px;
  }
  .tracker-form-wrap {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
