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

:root {
  --orange: #FF6B35;
  --yellow: #c8a51a;
  --pink: #EF476F;
  --green: #009900;
  --blue: #118AB2;
  --dark: #1a1a2e;
  --cream: #FFF8F0;
  --light-grey: #f5f0e8;
  --text: #333;
  --text-light: #777;
  --font-fun: 'Englebert', cursive;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #FFF0DB 0%, #FFE4CC 20%, #FDE8D8 40%, #E8F8F5 60%, #F0E6FF 80%, #FFF0DB 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* HAMBURGER BUTTON */
.hamburger-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--dark);
  box-shadow: 3px 3px 0 var(--dark);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hamburger-btn:hover {
  transform: translate(-1px, -1px) rotate(-3deg);
  box-shadow: 4px 4px 0 var(--dark);
}
.hamburger-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--dark);
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.hamburger-btn.open .line1 {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.open .line2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open .line3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* FULLSCREEN MENU */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.fullscreen-menu.open {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
}

.menu-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  animation: wiggle 3s ease-in-out infinite;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: var(--font-fun);
  font-size: 1.0rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 12px 4px 16px 8px;
  transition: all 0.25s ease;
}
.menu-link:hover {
  color: var(--yellow);
  transform: translateX(8px) rotate(-1deg);
  text-decoration: none;
}
.menu-link.active {
  color: var(--orange);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
}

.menu-icon { font-size: 1.4rem; }

.menu-socials {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.menu-socials a {
  color: #fff;
  font-family: var(--font-fun);
  font-weight: 700;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: background 0.2s;
}
.menu-socials a:hover {
  background: var(--orange);
  text-decoration: none;
}

/* PAGE CONTENT */
.page-content {
  padding-top: 80px;
  padding-bottom: 40px;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* SKETCHY BOXES */
.sketchy-box {
  border: 3px solid var(--dark);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  box-shadow: 4px 4px 0 var(--dark);
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sketchy-box:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--dark);
}

.sketchy-box:nth-child(even) {
  border-radius: 15px 255px 15px 225px/225px 15px 255px 15px;
}

.sketchy-box-sm {
  border: 2px solid rgba(26,26,46,0.25);
  border-radius: 225px 10px 255px 10px/10px 225px 10px 255px;
  box-shadow: 2px 2px 0 rgba(26,26,46,0.12);
  padding: 16px;
  margin-bottom: 12px;
  background: #fff;
}
.sketchy-box-sm:nth-child(odd) {
  border-radius: 10px 255px 10px 225px/225px 10px 255px 10px;
}

/* HEADINGS */
.page-title {
  font-family: var(--font-fun);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  text-align: center;
  margin-bottom: 6px;
}
.page-subtitle {
  font-family: var(--font-fun);
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 8px;
}
.title-line {
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-fun);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

/* FORMS */
.sketchy-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.sketchy-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(26,26,46,0.3);
  border-radius: 225px 8px 255px 8px/8px 225px 8px 255px;
  background: var(--cream);
  font-family: var(--font-fun);
  font-size: 1rem;
  transition: border-color 0.2s, transform 0.1s;
  outline: none;
  color: var(--text);
}
.sketchy-input:focus {
  border-color: var(--orange);
  transform: rotate(-0.5deg);
  box-shadow: 3px 3px 0 rgba(255,107,53,0.2);
}

select.sketchy-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.sketchy-input { resize: vertical; min-height: 100px; }

.form-group { margin-bottom: 16px; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

/* BUTTONS */
.sketchy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 3px solid var(--dark);
  border-radius: 255px 12px 225px 12px/12px 225px 12px 255px;
  box-shadow: 3px 3px 0 var(--dark);
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: #fff;
}
.sketchy-btn:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 5px 5px 0 var(--dark);
  text-decoration: none;
}
.sketchy-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--dark);
}

.btn-orange { background: var(--orange); }
.btn-pink { background: var(--pink); }
.btn-blue { background: var(--blue); }
.btn-green { background: var(--green); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-dark { background: var(--dark); }
.btn-white { background: #fff; color: var(--dark); }

.btn-full { width: 100%; }

.btn-info { margin: 25px; }


/* HERO */
.hero-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #111;
}

.hero-video {
  height: 400px;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.58) 28%, rgba(26,26,46,0.16) 60%, rgba(26,26,46,0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-fun);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero-title span {
  color: var(--orange);
}

.hero-tagline {
  font-family: var(--font-fun);
  color: var(--yellow);
  font-size: 1.1rem;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
  .hero-video {
    height: 400px;
  }

  .hero-video-desktop {
    display: block;
  }

  .hero-video-mobile {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-video {
    height: clamp(360px, 58vh, 520px);
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-overlay {
    padding: 18px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }

  .hero-tagline {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
  }
}

/* LANDMARK STRIP */
.landmark-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  padding: 24px 14px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.landmark-strip::-webkit-scrollbar {
  height: 6px;
}
.landmark-strip::-webkit-scrollbar-track {
  background: transparent;
}
.landmark-strip::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}
.landmark-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 0 8px;
}
.landmark-item {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: transform 0.3s;
  cursor: pointer;
}
.landmark-item:hover {
  transform: scale(1.20) rotate(-4deg);
}
.landmark-item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 4px;
  transition: border-color 0.3s;
}
.landmark-item:hover img {
  border-color: var(--yellow);
}
.landmark-item span {
  font-family: var(--font-fun);
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
  white-space: nowrap;
}
.landmark-arrow {
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}
@media (min-width: 768px) {
  .landmark-item img { width: 100px; height: 100px; }
  .landmark-item span { font-size: 0.85rem; }
  .landmark-arrow { font-size: 1.8rem; }
  .landmark-strip { padding: 20px 16px; }
}

/* COUNTDOWN */
.countdown-wrap {
  text-align: center;
  padding: 16px 0;
}
.countdown-label {
  font-family: var(--font-fun);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
}
.countdown-boxes {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cd-box {
  background: var(--dark);
  color: #fff;
  border: 3px solid var(--dark);
  border-radius: 255px 10px 225px 10px/10px 225px 10px 255px;
  box-shadow: 3px 3px 0 rgba(26,26,46,0.3);
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.countdown-label.elapsed {
  color: var(--green);
  animation: wiggle 1s ease-in-out;
}
.cd-val {
  font-family: var(--font-fun);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
}
.cd-unit {
  font-family: var(--font-fun);
  font-size: 0.65rem;
  color: var(--yellow);
  font-weight: 700;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .cd-box { width: 90px; height: 90px; }
  .cd-val { font-size: 2.4rem; }
}

/* FEATURE CARDS */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: scale(1.02) rotate(-0.5deg);
  text-decoration: none;
}
a.feature-card,
a.feature-card:visited,
a.feature-card:hover,
a.feature-card:active {
  color: inherit;
}
a.feature-card-vivid,
a.feature-card-vivid:visited,
a.feature-card-vivid:hover,
a.feature-card-vivid:active {
  color: #fff;
}
.feature-card-vivid .feature-title,
.feature-card-vivid .feature-desc {
  color: #fff;
}
.feature-card-vivid .feature-desc {
  opacity: 0.9;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-fun);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: inherit;
}
.feature-desc {
  font-family: var(--font-fun);
  color: inherit;
  font-size: 0.95rem;
}

/* COLOURED BANNERS */
.banner {
  border-radius: 12px 4px 16px 8px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: #fff;
}
.banner h2, .banner h3 {
  font-family: var(--font-fun);
  font-weight: 900;
}
.banner p { font-family: var(--font-fun); }
.banner-orange { background: var(--orange); border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; }
.banner-pink { background: var(--pink); border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); border-radius: 15px 255px 15px 225px/225px 15px 255px 15px; }
.banner-blue { background: var(--blue); border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; }
.banner-green { background: var(--green); border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); border-radius: 15px 255px 15px 225px/225px 15px 255px 15px; }
.banner-yellow { background: var(--yellow); border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; color: var(--dark); }
.banner-dark { background: var(--dark); border: 3px solid var(--dark); border-radius: 15px 255px 15px 225px/225px 15px 255px 15px; }

.banner-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.banner-tag {
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-family: var(--font-fun);
  font-size: 0.9rem;
}

/* BODY TEXT */
.fun-text {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  line-height: 1.8;
}
.fun-text strong.orange { color: var(--orange); }
.fun-text strong.green { color: var(--green); }
.fun-text strong.blue { color: var(--blue); }
.fun-text strong.pink { color: var(--pink); }
.fun-text strong.yellow { color: var(--yellow); }

.fun-text a {
  color: var(--pink);
  text-decoration: underline wavy;
  font-weight: 700;
}

/* COLLAPSIBLE */
.collapsible-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.collapsible-toggle .toggle-arrow {
  transition: transform 0.3s;
  font-size: 1.4rem;
}
.collapsible-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}

.collapsible-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.collapsible-body.open {
  max-height: 3000px;
}

/* DONOR WALL */
.donor-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
}
.donor-scroll::-webkit-scrollbar { width: 6px; }
.donor-scroll::-webkit-scrollbar-track { background: transparent; }
.donor-scroll::-webkit-scrollbar-thumb { background: rgba(255,107,53,0.4); border-radius: 3px; }
.donor-scroll::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.donor-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
}
.donor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.donor-name {
  font-family: var(--font-fun);
  font-weight: 700;
  color: var(--dark);
}
.donor-amount {
  font-family: var(--font-fun);
  font-weight: 700;
  color: var(--orange);
}
.donor-msg {
  font-family: var(--font-fun);
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* SPONSOR GRID */

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Desktop: 2 x 2 layout */
@media (min-width: 768px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sponsor-card {
  text-align: center;
  padding: 16px;
}
.sponsor-name {
  font-family: var(--font-fun);
  font-weight: 700;
  color: var(--dark);
}
.sponsor-pos {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ROUTE TIMELINE */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255,209,102,0.3);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-dot {
  position: absolute;
  left: -48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1;
}
.timeline-day-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 8px;
}
.timeline-date {
  font-size: 0.9rem;
  color: var(--text-light);
}
.timeline-route-title {
  font-family: var(--font-fun);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 8px 0;
}
.timeline-desc {
  font-family: var(--font-fun);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.7;
}
.fun-fact-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 16px;
}
.fun-fact-label {
  font-family: var(--font-fun);
  font-weight: 900;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.fun-fact-text {
  font-family: var(--font-fun);
  font-size: 0.9rem;
  color: var(--text-light);
}

.timeline-dist {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: auto;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  overflow: hidden;
  border: 2px solid rgba(26,26,46,0.2);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}
.gallery-thumb:hover {
  transform: scale(1.03) rotate(-1deg);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-thumb:hover img { transform: scale(1.1); }
.gallery-thumb .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-thumb:hover .gallery-overlay {
  background: rgba(0,0,0,0.3);
}
.gallery-overlay span {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-overlay span { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.1rem;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* COMMENTS */
.comment-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.comment-name {
  font-family: var(--font-fun);
  font-weight: 700;
}
.comment-text {
  font-family: var(--font-fun);
  color: var(--text);
  margin-top: 4px;
}
.comment-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* LIVE FEEDS */
.feed-embed {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.feed-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.info-card {
  padding: 24px;
  border-radius: 12px 4px 16px 8px;
  color: #fff;
}
.info-card h3 {
  font-family: var(--font-fun);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.info-card p { font-family: var(--font-fun); }

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-fun);
  margin-bottom: 8px;
  transition: background 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
  color: #fff;
}

/* THANK YOU */
.thankyou-icon {
  font-size: 5rem;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  animation: wiggle 1s ease-in-out;
}

/* FLASH MESSAGES */
.flash {
  padding: 16px 20px;
  border-radius: 8px 4px 12px 6px;
  margin-bottom: 20px;
  font-family: var(--font-fun);
  font-weight: 700;
  border: 2px solid;
}
.flash-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.flash-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}
.empty-title {
  font-family: var(--font-fun);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.empty-text {
  font-family: var(--font-fun);
  color: var(--text-light);
  font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  width: 160px;
  height: 160px;
  margin-bottom: 12px;
}
.footer-text {
  font-family: var(--font-fun);
  margin-bottom: 4px;
}
.footer-text a { color: var(--yellow); }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0;
}
.footer-socials a {
  color: #fff;
  font-family: var(--font-fun);
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--orange); text-decoration: none; }
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.footer-copy a { color: var(--orange); }

/* ADMIN */
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  background: var(--light-grey);
  border-radius: 12px;
  margin-bottom: 24px;
}
.admin-tab {
  padding: 8px 18px;
  border-radius: 10px;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text-light);
  background: transparent;
}
.admin-tab:hover { background: rgba(0,0,0,0.05); text-decoration: none; }
.admin-tab.active { color: #fff; }

.admin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-item-info { flex: 1; min-width: 0; }
.admin-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.admin-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.15s;
}
.admin-action-btn:hover { transform: scale(1.1); }
.btn-approve { background: #d4edda; color: #155724; }
.btn-approve.active { background: #28a745; color: #fff; }
.btn-delete { background: #f8d7da; color: #721c24; }
.btn-read { background: #d1ecf1; color: #0c5460; }

.unread-indicator {
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

/* ANIMATIONS */
@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.rotate-slight-left { transform: rotate(-1deg); }
.rotate-slight-right { transform: rotate(1deg); }
.rotate-slight-left:hover { transform: rotate(-2deg) scale(1.01); }
.rotate-slight-right:hover { transform: rotate(2deg) scale(1.01); }

/* Car page overlay */
.car-reveal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.car-icon-bounce {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 12px;
}

/* Misc */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

.inline-flex { display: inline-flex; align-items: center; gap: 6px; }

.total-raised {
  font-family: var(--font-fun);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}

.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .three-col-grid { grid-template-columns: repeat(3, 1fr); }
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
}

/* ============================
   RR40 MOBILE HERO FIXES
   ============================ */

/* 1) Stop the big bouncing logo being chopped on phones */
@media (max-width: 767px) {
  /* Give the hero enough height to fit logo + text */
  .hero-img {
    height: clamp(360px, 55vh, 520px) !important;
  }

  /* Keep the big logo from being stupidly huge on small screens */
  .hero-logo-big {
    width: clamp(150px, 42vw, 220px) !important;
    height: clamp(150px, 42vw, 220px) !important;
  }

  /* Slightly tighter padding so everything fits comfortably */
  .hero-overlay {
    padding: 18px !important;
  }

  /* Optional: make the title/tagline a touch smaller if needed */
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem) !important;
  }
  .hero-tagline {
    font-size: clamp(1rem, 4.2vw, 1.15rem) !important;
  }
}

/* ROUTE MAP PREVIEW */
.route-map-section {
  margin-bottom: 32px;
}

.route-map-card {
  padding: 20px;
}

.route-map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.route-map-title {
  margin-bottom: 6px;
  color: var(--orange);
}

.route-map-text {
  color: var(--text-light);
  max-width: 720px;
  font-size: 0.98rem;
  font-family: var(--font-fun);
}

.route-map-open {
  flex-shrink: 0;
}

.route-map-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 3px solid var(--dark);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 4px 4px 0 var(--dark);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.route-map-preview:hover {
  transform: translate(-2px, -2px) rotate(-0.4deg);
  box-shadow: 6px 6px 0 var(--dark);
}

.route-map-preview img {
  display: block;
  width: 100%;
  height: clamp(260px, 48vw, 420px);
  object-fit: cover;
  object-position: center top;
}

.route-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.72) 0%, rgba(26,26,46,0.08) 45%, rgba(26,26,46,0.05) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  transition: background 0.25s ease;
}

.route-map-overlay span {
  display: inline-block;
  background: rgba(255,255,255,0.92);
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 2px 2px 0 var(--dark);
}

.route-map-preview:hover .route-map-overlay {
  background: linear-gradient(to top, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.12) 50%, rgba(26,26,46,0.08) 100%);
}

@media (max-width: 767px) {
  .route-map-card {
    padding: 16px;
  }

  .route-map-header {
    align-items: stretch;
  }

  .route-map-open {
    width: 100%;
  }

  .route-map-preview img {
    height: 300px;
  }
}
/* ADMIN AREA: force boring web-safe fonts everywhere */
body.admin-area,
body.admin-area *,
body.admin-area *::before,
body.admin-area *::after {
  font-family: Verdana, Arial, Tahoma, sans-serif !important;
}

body.admin-area {
  --font-fun: Verdana, Arial, Tahoma, sans-serif;
  --font-body: Verdana, Arial, Tahoma, sans-serif;
}

/* =========================
   WHATSAPP FLOATING CHAT
   ========================= */

#whatsapp-container {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  max-width: 200px;
  text-align: right;
  overflow: visible;
  background: transparent;
}

#whatsapp-container.whatsapp-hidden {
  display: none;
}

#whatsapp-container.whatsapp-visible {
  display: block;
  animation: slideUp 0.35s ease-out;
}

#whatsapp-bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 14px;
  max-width: 200px;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-fun);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: left;
  border: 3px solid var(--dark);
  border-radius: 22px 8px 24px 10px / 10px 24px 8px 22px;
  box-shadow: 4px 4px 0 var(--dark);
  animation:
    whatsappBubblePop 0.35s ease-out,
    wiggle 3.8s ease-in-out 1.2s infinite;
}

#whatsapp-bubble::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 6px solid transparent;
  border-top: 14px solid var(--cream);
  transform: rotate(8deg);
}

#whatsapp-bubble::before {
  content: "";
  position: absolute;
  right: 17px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 7px solid transparent;
  border-top: 17px solid var(--dark);
  z-index: -1;
  transform: rotate(8deg);
}

#whatsapp-chat {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  padding: 0;
  margin: 0;
}

#whatsapp-chat:hover {
  text-decoration: none;
}

#whatsapp-chat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  margin: 0;
  padding: 0;
}

#whatsapp-chat:hover img,
#whatsapp-chat:focus img {
  transform: translate(-2px, -2px) rotate(-6deg) scale(0.90);
}

#whatsapp-chat:active img {
  transform: translate(1px, 1px) scale(0.98);
}

@keyframes whatsappBubblePop {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-3deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.04) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 767px) {
  #whatsapp-container {
    right: 14px;
    bottom: 14px;
    max-width: 200px;
  }

  #whatsapp-bubble {
    max-width: 200px;
    font-size: 0.75rem;
    padding: 8px 11px;
    margin-bottom: 8px;
  }

  #whatsapp-chat img {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #whatsapp-container.whatsapp-visible,
  #whatsapp-bubble,
  #whatsapp-chat img {
    animation: none !important;
    transition: none !important;
  }
}
#whatsapp-bubble {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#whatsapp-bubble.whatsapp-bubble-hide {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
}