﻿:root {
  --by-max-w: 1280px;
  --by-gutter: 24px;
}

.by-container {
  max-width: var(--by-max-w);
  margin: 0 auto;
  padding: 0 var(--by-gutter);
}

/* Reset + base (mirrored from home.css) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi-Regular", sans-serif;
  color: #00152b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* .by-container — defined in by-shared.css */

/* ---- NAV (identical to home) ---- */
.by-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 249, 253, 0.98);
  backdrop-filter: blur(10px);
}

.admin-bar .by-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .by-header {
    top: 46px;
  }
}

.by-nav-inner {
  max-width: var(--by-max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.by-nav-logo img {
  height: 36px;
}

.by-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.by-nav-links ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.by-nav-links a {
  font-size: 15px;
  font-family: "Satoshi-Bold", sans-serif !important;
  color: #00152b;
  transition: color 0.15s;
  letter-spacing: -0.48px;
}

.by-nav-links a:hover,
.by-nav-links a.active,
.by-nav-links .current-menu-item a {
  color: #078e45;
}

.by-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.by-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.by-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00152b;
  border-radius: 2px;
  transition: all 0.2s;
}

.by-nav-links a.by-nav-login-mobile {
  display: none;
}

@media (max-width: 400px) {
  .by-nav-links a.by-nav-login-mobile {
    display: inline-flex;
    justify-content: center;
    margin: 8px 24px 4px;
    width: calc(100% - 48px);
    padding: 10px 20px;
    font-size: 15px;
  }

  .by-nav-actions > a[href*="login"] {
    display: none;
  }
}

/* Buttons */
.by-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Satoshi-Bold", sans-serif !important;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}

.by-btn-green {
  background: #078e45;
  color: #fff;
}

.by-btn-green:hover {
  background: #066b35;
}

.by-btn-outline {
  background: transparent;
  color: #00152b;
  border: 1.5px solid #00152b;
}

.by-btn-outline:hover {
  background: #00152b;
  color: #fff;
}

.by-btn-ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid #e5e7eb;
}

.by-btn-ghost:hover {
  border-color: #00152b;
  color: #00152b;
}

.by-btn-lg {
  padding: 13px 26px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.48px;
}

/* ---- HERO ---- */
.exp-hero {
  padding: 64px 0 0;
}

.exp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.exp-hero-text h1 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1.92px;
  color: #00152b;
  margin-bottom: 20px;
}

.exp-hero-text h1 .green {
  font-family: "Satoshi-Bold", sans-serif !important;
  color: #078e45;
}

.exp-hero-text p {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #00152b;
  margin-bottom: 16px;
  max-width: 360px;
}

.exp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Search bar */
.exp-hero-map-wrap {
  display: flex;
  flex-direction: column;
}

.exp-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 12px 16px;
}
.exp-search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.exp-search-input input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #374151;
  font-family: "Satoshi-Regular", sans-serif;
  width: 100%;
  background: transparent;
}

.exp-search-input input::placeholder {
  color: #9ca3af;
}

.exp-search-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 13px;
  color: #374151;
  white-space: nowrap;
  cursor: pointer;
}

.exp-search-settings {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.exp-map-panel {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

/* Map */
.exp-map {
  position: relative;
  background: #e9eef5;
  min-height: 260px;
}

.exp-map > img:first-child {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Decorative pins */
.exp-pin {
  position: absolute;
  width: 28px;
  height: 28px;
}

.exp-pin-1 {
  top: 22%;
  left: 48%;
}

.exp-pin-2 {
  top: 30%;
  left: 62%;
}

.exp-pin-3 {
  top: 50%;
  left: 30%;
}

.exp-pin-4 {
  top: 60%;
  left: 55%;
}

.exp-pin-5 {
  top: 15%;
  left: 70%;
}

/* ---- EVENTS SECTION ---- */
.exp-events {
  padding: 48px 0;
}

/* Filter pills */
.exp-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.exp-filter {
  padding: 8px 18px;
  border-radius: 8px;
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.54px;
  color: #374151;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.exp-filter:hover {
  border-color: #078e45;
  color: #078e45;
}

.exp-filter.active {
  background: #078e45;
  color: #fff;
  border-color: #078e45;
}

.exp-filter-view-all {
  margin-left: auto;
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 14px;
  color: #00152b;
  transition: color 0.15s;
}

.exp-filter-view-all:hover {
  color: #078e45;
}

/* Event cards */
.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exp-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.exp-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.exp-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.exp-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-card-body h3 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 22px;
  line-height: 29px;
  letter-spacing: -0.66px;
  color: #00152b;
}

.exp-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-card-date,
.exp-card-time {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: #00152b;
  opacity: 0.6;
}

.exp-dot {
  color: #d1d5db;
}

.exp-going-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.exp-card-going {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-card-going span {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: #00152b;
  opacity: 0.6;
}

.exp-tag {
  display: inline-block;
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.48px;
  border-radius: 6px;
  padding: 3px 10px;
  margin-top: 2px;
  width: fit-content;
}

.exp-tag-free {
  background: transparent;
  color: #078e45;
  border: none;
  padding-left: 0;
}

.exp-tag-dark {
  color: #00152b;
}

/* ---- COMMUNITIES SECTION ---- */
.exp-communities {
  padding: 0 0 56px;
}

.exp-communities-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.exp-communities-head h2 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 34px;
  letter-spacing: -1.02px;
  color: #00152b;
}

.exp-view-all-link {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 14px;
  color: #00152b;
  transition: color 0.15s;
}

.exp-view-all-link:hover {
  color: #078e45;
}

.exp-comm-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.exp-comm-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
  cursor: pointer;
}

.exp-comm-card:hover {
  border-color: #078e45;
  box-shadow: 0 2px 10px rgba(7, 142, 69, 0.1);
}

.exp-comm-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-comm-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exp-comm-card span {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  color: #00152b;
}

/* ---- CTA BANNER ---- */
.exp-cta {
  padding: 0 0 48px;
}

.exp-cta-inner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 40px;
}

.exp-cta-text {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.exp-cta-text h2 {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 35px;
  line-height: 60px;
  letter-spacing: -1.05px;
  color: #00152b;
  margin-bottom: 12px;
  white-space: nowrap;
}

.exp-cta-text p {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: #00152b;
  margin-bottom: 0;
}

/* ---- FOOTER BANNER (same as home) ---- */
.by-footer-banner {
  max-width: 1800px;
  margin: 0 auto;
  background: transparent linear-gradient(270deg, #7037d6 0%, #04553c 100%) 0%
    0% no-repeat padding-box;
  border-radius: 20px 20px 0 0;
  padding: 24px 32px;
  box-sizing: border-box;
  width: calc(100% - 48px);
}

.by-footer-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.by-footer-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.by-footer-banner-text strong {
  font-family: "Satoshi-Bold", sans-serif !important;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.66px;
}

.by-footer-banner-text span {
  font-family: "Satoshi-Medium", sans-serif !important;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.48px;
}

.by-footer-banner-perks {
  display: flex;
  align-items: center;
}

.by-footer-perk {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.by-footer-perk:last-child {
  border-right: none;
  padding-right: 0;
}

.by-footer-perk:first-child {
  padding-left: 0;
}

.by-footer-perk img {
  width: 14px;
  height: 20px;
}

.by-footer-perk strong {
  font-family: "Satoshi-Bold", sans-serif !important;
  display: block;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: #fff;
}

.by-footer-perk span {
  font-family: "Satoshi-Medium", sans-serif !important;
  display: block;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.48px;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
  .by-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    z-index: 200;
  }

  .by-nav-links.open {
    display: flex;
  }

  .by-nav-links ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .by-nav-links a {
    padding: 12px 24px;
    font-size: 15px;
    display: block;
  }

  .by-hamburger {
    display: flex;
  }

  .exp-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exp-hero-text h1 {
    font-size: 42px;
  }

  .exp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-comm-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .exp-cta-inner {
    padding: 36px 28px;
    min-height: 220px;
  }

  .by-footer-banner-perks {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .exp-hero {
    padding: 40px 0 0;
  }

  .by-nav-actions {
    gap: 6px;
  }

  .by-nav-actions .by-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .exp-hero-text h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .exp-hero-text p {
    max-width: none;
  }

  .exp-hero-btns {
    flex-wrap: wrap;
  }

  .exp-search-bar {
    flex-wrap: wrap;
  }

  .exp-search-input {
    width: 100%;
  }

  .exp-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .exp-comm-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .exp-communities-head h2 {
    font-size: 22px;
  }

  .exp-cta-inner {
    background-image: none !important;
    background-color: #f8f9fd;
    min-height: unset;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .exp-cta-text {
    max-width: 100%;
  }

  .exp-cta-text h2 {
    white-space: normal;
    font-size: 22px;
    line-height: 1.2;
  }

  .exp-cta-text p {
    font-size: 14px;
  }

  .by-footer-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .by-footer-banner-perks {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .by-footer-perk {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    width: 100%;
  }

  .by-footer-perk:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .by-footer-perk:first-child {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .exp-cards-grid {
    grid-template-columns: 1fr;
  }

  .exp-comm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-hero-text h1 {
    font-size: 30px;
  }

  .exp-filter-view-all {
    margin-left: 0;
  }
}
.by-mobile-cta-bar {
  display: none;
}

@media (max-width: 500px) {
  .by-nav-actions .by-btn {
    display: none;
  }

  .by-mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 21, 43, 0.06);
    z-index: 999;
  }

  .by-mobile-cta-bar .by-btn {
    flex: 1;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body {
      padding-bottom: 85px !important;
  }
}
