/* Make contact form textarea text bold for better readability */
#contact-form textarea {
  font-weight: 700;
  color: #114734;
}
/* Make contact form input text bold for better readability */
#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form input[type="email"] {
  font-weight: 700;
  color: #114734;
}
/* Add dark green text shadow to phone numbers in groups-boxes for contrast */
/* Set phone numbers in groups-boxes to dark green for contrast */
.groups-box strong a[href^="tel:"] {
  color: var(--vl-primary) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
}
/* Add text shadow to Facebook icon in hero section */
/* Use drop-shadow filter for Facebook icon in hero section */
#hero .fa-facebook,
#hero .fa-facebook-f {
  filter: drop-shadow(0 2px 6px #114734) drop-shadow(0 0 2px #000);
}
/* Ensure hero section buttons have text shadow */
.hero-cta a {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
/* Restore text shadow to all main site buttons except those in .groups-box */
button:not(.groups-box button),
#about-readmore-btn,
#events .inline-block,
#local-resources .inline-block,
.youtube-subscribe-btn,
#contact-form button,
#events .text-center.mt-4 > a {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Remove text shadow from all buttons/links inside .groups-box except the special Groups section button */
.groups-box button,
.groups-box a {
  text-shadow: none !important;
}

/* Keep text shadow on the Groups section 'For More Information' button */
#groups-more-info > a.inline-block.text-main-text.font-semibold.py-2.px-6.rounded.border.transition-all.duration-300.active\:scale-95 {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}
/* Text shadow only for the Groups section button */
#groups-more-info > a.inline-block.text-main-text.font-semibold.py-2.px-6.rounded.border.transition-all.duration-300.active\:scale-95 {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}
}

/* =========================
   FINAL HERO + NAV FIX
   ========================= */

@font-face {
  font-family: "SohneSchmal";
  src: url("/ecom/assets/fonts/SohneSchmal-Halbfett.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --nav-h: 90px;
  --section-space: clamp(2.75rem, 5vw, 5.5rem);
  --section-divider: rgba(47, 47, 47, 0.16);
  --heading-underline-width: 2.75rem;
  --heading-underline-thickness: 6px;
  --heading-underline-gap: 0.35rem;
  --vl-primary: #114734;
  --vl-primary-soft: #C4D600;
  --vl-bg: #FFFFFF;
  --vl-surface: #FFFFFF;
  --vl-panel: #FFFFFF;
  --vl-text: #333333;
  --vl-muted: #54565A;
  --vl-accent: #C4D600;
  --vl-accent-hover: #114734;
  --vl-on-primary: #FFFFFF;
  --vl-font-ui: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  --vl-font-display: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  --vl-font-alt: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  font-stretch: 100%;
  font-style: normal;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

.text-grape-blush {
  color: #333333 !important;
}

#navbarNav a {
  color: #333333 !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em;
}

#navbarNav a:hover,
#navbarNav a:focus-visible {
  color: #333333 !important;
  text-decoration: underline;
  text-decoration-color: #C4D600;
  text-underline-offset: 0.22em;
}

html, body { overflow-x: clip; }

/* Prevent sections hiding under fixed navbar */
[id] {
  scroll-margin-top: calc(var(--nav-h, 90px) + 12px);
}

main > section + section {
  margin-top: var(--section-space);
  padding-top: var(--section-space);
  border-top: 1px solid var(--section-divider);
}

/* Push hero below navbar */
#hero {
  padding-top: var(--nav-h, 90px);
}

/* Hero wrapper */
.hero-wrap{
  position: relative;
  width: 100%;
  min-height: calc(100dvh - var(--nav-h, 90px));
  overflow: hidden;
  display: grid;
  place-items: center;
}



/* Hero background images */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1000ms ease;
  z-index: 1;
}
.hero-bg.is-active { opacity: 1; }

#hero-img-2 {
  filter: grayscale(100%);
}

/* Tint overlay */
.hero-tint{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: 3;
  pointer-events: none;
}
.hero-tint.is-active { opacity: 1; }

/* Hero content */
.hero-content{
  position: relative;
  z-index: 10;
  width: min(1100px, 100%);
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Title */
.hero-title{
  font-family: "Inter", sans-serif;
  color: #2F6E4F;
  font-size: clamp(2.25rem, 5vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 22ch;
  margin: 0 0 10px;
}

/* Buttons */
.hero-cta{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Small screens */
@media (max-width: 380px){
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-cta a { width: min(320px, 90vw); }
}

/* Landscape phones */
@media (max-height: 420px) and (orientation: landscape){
  .hero-wrap{
    min-height: calc(100svh - var(--nav-h, 90px));
  }
  .hero-title{
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
}

/* Fix dropdown positioning */
#navbarNav{
  top: var(--nav-h, 90px) !important;
  width: 100% !important;
  max-height: calc(100dvh - var(--nav-h, 90px)) !important;
}
*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
} /*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/
*,
:after,
:before {
  border: 0 solid #54565A;
  box-sizing: border-box;
}
:after,
:before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family:
    ui-sans-serif,
    system-ui,
    sans-serif,
    Apple Color Emoji,
    Segoe UI Emoji,
    Segoe UI Symbol,
    Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
}
body {
  line-height: inherit;
  margin: 0;
}
hr {
  border-top-width: 1px;
  color: inherit;
  height: 0;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
  font-feature-settings: normal;
  font-size: 1em;
  font-variation-settings: normal;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-feature-settings: inherit;
  font-size: 100%;
  font-variation-settings: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #54565A;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #54565A;
  opacity: 1;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  height: auto;
  max-width: 100%;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6,
nav {
  color: #114734;
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  position: relative;
}

.meetup-box h2,
.meetup-box h3,
.groups-box h2,
.groups-box h3,
h2.your-class-name {
  padding-bottom: 0;
}

.meetup-box h2::after,
.meetup-box h3::after,
.groups-box h2::after,
.groups-box h3::after,
h2.your-class-name::after {
  content: none;
}
.quote,
.title,
blockquote {
  color: #FFFFFF;
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
}

label,
input,
textarea,
button {
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 200;
  letter-spacing: -0.02em;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.navbar {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  --tw-bg-opacity: 1;
  background-color: rgb(224 236 220 / var(--tw-bg-opacity, 1));
  --tw-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored:
    0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.navbar-brand .logo {
  height: 3.5rem;
  width: auto;
}
.section {
  --tw-bg-opacity: 1;
  background-color: rgb(250 242 229 / var(--tw-bg-opacity, 1));
  padding: 4rem 1rem;
  text-align: center;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  white-space: nowrap;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0;
}
.left-0 {
  left: 0;
}
.top-0 {
  top: 0;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.col-span-3 {
  grid-column: span 3 / span 3;
}
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-40 {
  margin-top: 10rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-64 {
  margin-top: 16rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-1 {
  height: 0.25rem;
.founders-photo-wrap {
  width: 100%;
  max-width: 256px;
  border-radius: 28px !important;
  overflow: hidden !important;
  border: 1px solid rgba(47, 47, 47, 0.18);
}
.founders-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px !important;
  overflow: hidden !important;
  clip-path: inset(0 round 28px);
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
}
.h-96 {
  height: 24rem;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-4 {
  width: 1rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-full {
  width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-prose {
  max-width: 65ch;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-items-center {
  justify-items: center;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
.gap-y-8 {
  row-gap: 2rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.p-0 {
  padding: 0;
}
.p-3 {
  padding: 0.75rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.py-2 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.py-20 {
  padding-bottom: 5rem;
  padding-top: 5rem;
}
.py-3 {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}
.py-4 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.py-5 {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}
.py-8 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.pt-32 {
  padding-top: 8rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

p,
li,
a,
span,
small,
label,
input,
textarea,
button {
  font-weight: 400;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[4rem\] {
  font-size: 4rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.shadow-lg {
  --tw-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored:
    0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
}
.shadow-lg,
.shadow-xl {
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored:
    0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1))
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}
.drop-shadow,
.drop-shadow-lg {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04))
    drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
.drop-shadow-xl {
  --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03))
    drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.drop-shadow-xl,
.grayscale {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-duration: 0.15s;
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-all {
  transition-duration: 0.15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-colors {
  transition-duration: 0.15s;
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-opacity {
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-1000 {
  transition-duration: 1s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.duration-400 {
  transition-duration: 0.4s;
}
.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
}
.hover\:-translate-y-2:hover,
.hover\:scale-105:hover {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}
.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:text-grape-golden:hover {
  --tw-text-opacity: 1;
  color: rgb(240 216 130 / var(--tw-text-opacity, 1));
}
.hover\:text-grape-royal-purple:hover {
  --tw-text-opacity: 1;
  color: rgb(74 14 78 / var(--tw-text-opacity, 1));
}
.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
}
.hover\:shadow-2xl:hover,
.hover\:shadow-lg:hover {
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.hover\:shadow-lg:hover {
  --tw-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored:
    0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
}
.hover\:shadow-xl:hover {
  --tw-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored:
    0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.focus\:border-transparent:focus {
  border-color: transparent;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:
    var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.active\:scale-95:active {
  --tw-scale-x: 0.95;
  --tw-scale-y: 0.95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:gap-x-8 {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .md\:gap-y-10 {
    row-gap: 2.5rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:static {
    position: static;
  }
  .lg\:mt-0 {
    margin-top: 0;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(1rem * var(--tw-space-x-reverse));
  }
  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
    margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
  }
  .lg\:bg-transparent {
    background-color: transparent;
  }
  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .lg\:py-0 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .lg\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow:
      var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
      var(--tw-shadow);
  }
}
body h1 {
  font-family: "Inter", sans-serif !important;
  font-weight: 900 !important;
}
body h2 {
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif !important;
  font-weight: 900 !important;
  transform: scaleY(1.06);
  transform-origin: center;
  -webkit-text-stroke: 0.015em currentColor;
  paint-order: stroke fill;
  color: inherit !important; /* Allow inline styles to take precedence */
}
body h3 {
  font-family: "SohneSchmal", "Sohne Schmal", "Inter", sans-serif !important;
  font-weight: 900 !important;
  -webkit-text-stroke: 0.015em currentColor;
  paint-order: stroke fill;
  color: inherit !important; /* Allow inline styles to take precedence */
}
 .meetup-box {
  background-color: #FFFFFF !important;
  border: 1px solid rgba(36, 49, 40, 0.22);
  max-width: 20rem;
  min-width: 0;
  width: 100%;
  min-height: 10rem;
  box-shadow: 0 14px 30px rgba(36, 49, 40, 0.12); /* Stronger separation from page background */
  border-radius: 8px; /* Rounded corners */
  display: flex; /* Center content */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Remove 100vw/margin hacks for responsiveness; use w-full and Tailwind utilities in HTML */
#worship-title, #events, #thought, #groups, #youtube, #local-resources, #find-us, footer {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
/* Ensure all resource-box elements have the same size, drop-shadow, rounded corners, and grape-sage background */
/* Local Resources section boxes */
.resource-box {
  max-width: 20rem;
  min-width: 0;
  width: 100%;
  min-height: 16rem;
  box-shadow: 0 16px 34px rgba(36, 49, 40, 0.14);
  border-radius: 8px;
  background-color: #FFFFFF !important;
  border: 1px solid rgba(36, 49, 40, 0.22);
  filter: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

/* Groups section boxes */
.groups-box {
  max-width: 20rem;
  min-width: 0;
  width: 100%;
  min-height: 16rem;
  box-shadow: 0 16px 34px rgba(36, 49, 40, 0.14);
  border-radius: 8px;
  background-color: #FFFFFF !important;
  border: 1px solid rgba(36, 49, 40, 0.22);
  filter: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.groups-box h3,
.groups-box p,
.groups-box dl {
  width: 100%;
  text-align: left;
}

#find-us .location-info.rounded-lg {
  background-color: #FFFFFF;
  border: 1px solid rgba(36, 49, 40, 0.22);
  box-shadow: 0 16px 34px rgba(36, 49, 40, 0.12);
}
/* Adjusting text alignment inside resource-box */
.resource-box h3 {
  text-align: center; /* Center-aligning the heading */
}
.resource-box p, .resource-box dl {
  text-align: center; /* Center-aligning paragraphs and lists */
}
#events .flex.flex-col.items-center.justify-center.text-center.w-full {
  color: #333333 !important;
}
#events h2 {
  color: #333333 !important;
}
#events p.text-lg.md\:text-xl.w-full {
  color: #54565A !important;
}

#events-container h3,
#events-container p,
#events-container strong {
  color: #333333 !important;
}

#thought h2 {
  color: #C4D600 !important;
}

#thought {
  background-color: #114734 !important;
}

/* Ensure sections are not obscured by the fixed navbar */
section {
  scroll-margin-top: 100px; /* Adjust based on navbar height */
}

/* =========================
   HERO + NAV + MOBILE TEXT FIXES
   Paste at END of style.css
   ========================= */

/* fallback until JS sets real height */
:root { --nav-h: 90px; }

/* Prevent sideways scroll */
html, body { overflow-x: clip; }

/* All anchor jumps account for fixed navbar */
[id] {
  scroll-margin-top: calc(var(--nav-h, 90px) + 12px);
}

/* HERO sits below fixed navbar */
#hero {
  padding-top: var(--nav-h, 90px);
}

/* HERO wrapper fills remaining screen */
.hero-wrap{
  position: relative;
  width: 100%;
  min-height: calc(100dvh - var(--nav-h, 90px));
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* HERO background images */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1000ms ease;
  z-index: 1;
}
.hero-bg.is-active { opacity: 1; }

/* Tint overlay (for image 2) */
.hero-tint{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  letter-spacing: -0.045em;
  z-index: 3;
  pointer-events: none;
}
.hero-tint.is-active { opacity: 1; }

/* HERO foreground content */
.hero-content{
  position: relative;
  z-index: 10;
  width: min(1100px, 100%);
  padding: clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Title */
.hero-title{
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  font-size: clamp(2.25rem, 5vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 22ch;
  margin: 0 0 10px;
}

/* Buttons row */
.hero-cta{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Small phones */
@media (max-width: 380px){
  .hero-cta a { width: min(320px, 90vw); }
}

/* Landscape phones: reduce title & ensure safe viewport height */
@media (max-height: 420px) and (orientation: landscape){
  .hero-wrap{
    min-height: calc(100svh - var(--nav-h, 90px));
  }
  .hero-title{
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
}

/* Mobile dropdown: position below navbar, scroll if needed */
#navbarNav{
  top: var(--nav-h, 90px) !important;
  left: 0 !important;
  width: 100vw !important;
  max-height: calc(100dvh - var(--nav-h, 90px)) !important;
  overflow-y: auto !important;
  position: absolute !important;
  z-index: 60 !important;
}

/* Desktop nav normal */
@media (min-width: 1024px){
  #navbarNav{
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
    z-index: 40 !important;
  }
}

/* Fix ABOUT + FOUNDERS text touching edges on mobile */
@media (max-width: 640px){
  #about, #founders{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* CTA pulse effect */

/* Hero CTA button glow effect */
.hero-cta a {
  position: relative;
  z-index: 0;
  overflow: visible;
  isolation: isolate;
  background: #C4D600 !important;
  color: #FFFFFF !important;
  border-color: #C4D600 !important;
  font-weight: 400 !important;
  box-shadow: 0 0 18px 6px rgba(255, 255, 120, 0.92), 0 0 32px 10px rgba(196, 214, 0, 0.8);
  transition: box-shadow 0.3s;
}

.hero-cta a:hover,
.hero-cta a:focus-visible {
  background: #114734 !important;
  border-color: #114734 !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 28px 10px rgba(255, 255, 120, 0.98), 0 0 48px 18px rgba(196, 214, 0, 0.9);
}

/* Non-hero CTA button style */
#about-readmore-btn,
#events .inline-block,
#groups .inline-block,
#local-resources .inline-block,
.youtube-subscribe-btn,
#contact-form button {
  background: #C4D600 !important;
  color: #FFFFFF !important;
  border-color: #C4D600 !important;
  font-weight: 400 !important;
}

.youtube-subscribe-btn i {
  color: #FFFFFF !important;
}

#about-readmore-btn:hover,
#events .inline-block:hover,
#groups .inline-block:hover,
#local-resources .inline-block:hover,
.youtube-subscribe-btn:hover,
#contact-form button:hover {
  background: #114734 !important;
  border-color: #114734 !important;
  transform: none !important;
}

#groups-subtitle {
  color: #54565A !important;
}
