/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css ***!
  \******************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap);
/*!**********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css (1) ***!
  \**********************************************************************/
/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #14110E;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(20, 17, 14, 0.2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 17, 14, 0.35);
}

/* ─── Selection ─────────────────────────────────────────── */
::selection {
  background: rgba(216, 103, 76, 0.2);
  color: #14110E;
}

/* ─── Focus ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #D8674C;
  outline-offset: 2px;
}

/* ─── Page Layout ────────────────────────────────────────── */
.page-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-home__main {
  flex: 1;
}

/* ─── Nearby Toggle ─────────────────────────────────────── */
.home-nearme {
  padding: 0 1rem;
  border-bottom: 1px solid rgba(20, 17, 14, 0.08);
  background: #FFFFFF;
}

.home-nearme__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.home-nearme__btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(20, 17, 14, 0.5);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}

.home-nearme__btn--active {
  color: #14110E;
  border-bottom-color: #14110E;
}

.home-nearme__btn:hover {
  color: rgba(20, 17, 14, 0.8);
}

/* ─── Events Section ───────────────────────────────────── */
.home-events {
  padding: 2rem 1rem;
}

.home-events__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-events__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-events__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-events__more {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.home-events__more-btn {
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #14110E;
  background: transparent;
  border: 1.5px solid rgba(20, 17, 14, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.home-events__more-btn:hover {
  border-color: #14110E;
  background: #14110E;
  color: #FFFFFF;
}

/* ─── Section Header overrides ──────────────────────────── */
cdt-section-header {
  display: block;
}


/*# sourceMappingURL=app.b0f2eb5bf5083778c236.bundle.css.map*/