﻿:root {
  --green: #4d6f39;
  --brown: #4A3526;
  --cream: #E9E0D2;
  --violet: #5E5587;
  --terracotta: #B35642;
  --shadow-soft: rgba(0,0,0,0.08);
  --shadow-strong: rgba(0,0,0,0.12);
  --surface-soft: rgba(255,255,255,0.08);
  --surface-strong: rgba(74, 53, 38, 0.06);
  --text-soft: #5F4C3F;
  --focus-ring: rgba(179, 86, 66, 0.28);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===== BASE ===== */
body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  background: linear-gradient(180deg, #F7F2EC 0%, #E9E0D2 20%, #5E5587 100%);
  min-height: 100vh;
  color: var(--brown);
  line-height: 1.72;
  letter-spacing: 0.003em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

main {
  width: 100%;
}

img, svg {
  max-width: 100%;
  display: block;
}

a, button, input, textarea {
  touch-action: manipulation;
}

body.index-page,
body.membership-page,
body.contact-page {
  background: linear-gradient(180deg, #F4EFE9 0%, #E9E0D2 20%, #4d6f39 100%);
}

body.menu-page,
body.visit-page {
  background: linear-gradient(180deg, #F7EDE9 0%, #E9E0D2 20%, #B35642 100%);
} 

h1, h2, h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================
   NAVBAR BASE
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background: rgba(233, 224, 210, 0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(233, 224, 210, 0.35);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.26s ease, transform 0.26s ease, background 0.26s ease;
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(233, 224, 210, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(233, 224, 210, 0.25);
}

/* ============================
   NAVBAR INNER
   ============================ */
.navbar-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ============================
   BRAND
   ============================ */
.nav-brand {
  position: relative;
  left: auto;
  transform: none;
  transform-origin: left center;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(1.48rem, 1.8vw, 2rem);
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
  will-change: transform, color, opacity;
}

/* ============================
   DESKTOP LINKS
   ============================ */
.nav-links {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-direction: row;
  margin-left: auto;
  position: relative;
  right: auto;
  top: auto;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  transform-origin: top center;
  box-shadow: none;
  transition: none;
}

.nav-links a {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 0.5rem 0.35rem;
  text-decoration: none;
  opacity: 1;
  border-radius: 0.5rem;
  transition: color 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
  will-change: color, opacity, background-color;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--terracotta);
  background: rgba(77, 111, 57, 0.05);
  opacity: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--brown);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--focus-ring);
}

/* ===== PAGE SECTION WRAPPER ===== */
.page-section {
  padding: 120px 0 58px;
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  background: transparent;
}

.ripple-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 64ch;
  margin: 0 auto;
}

/* ===== GRID SYSTEM ===== */
.one-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

/* ===== CARD SYSTEM ===== */
.ripple-card {
  background: var(--cream);
  border: 2px solid rgba(77, 111, 57, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px var(--shadow-soft);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.6rem 2.35rem;
}

.ripple-card:hover {
  border-color: rgba(179, 86, 66, 0.6);
  box-shadow: 0 10px 24px var(--shadow-strong);
  transform: translateY(-1px);
}

.ripple-card,
.menu-card,
.faq-item,
.form-group input,
.form-group textarea {
  color: var(--brown);
}

/* ===== TYPOGRAPHY ===== */
.ripple-heading {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  color: var(--violet);
  text-align: center;
  font-size: clamp(1.46rem, 1.9vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.ripple-text {
  color: var(--brown);
  line-height: 1.72;
  max-width: 64ch;
  font-size: 1.04rem;
  color: var(--brown);
}

.ripple-text strong {
  color: var(--violet);
  font-weight: 700;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* ===== COPY BLOCK ===== */
.ripple-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  max-width: 64ch;
  margin: 0 auto;
}

/* ===== CTA BUTTON ===== */
.ripple-btn {
  background: var(--terracotta);
  color: var(--cream);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.ripple-btn:hover {
  background: var(--green);
  box-shadow: 0 6px 18px var(--shadow-strong);
}

/* ============================
   INDEX (about us)
   ============================ */
/* ===== FRAUNCES UTILITIES ===== */
/* Generic utility using CSS vars so you can set weight/axes per-element */
/* Hybrid layout styles remain intentionally simple and consistent. */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; 
}

/* ===== EVENT SECTION ===== */
.events-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
  padding: 1.8rem;
}

.events-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  align-items: center;
}

.event-item h3 {
  margin-bottom: 0.2rem;
}

/* ============================
   THREE-COLUMN GRID (Menu + Community)
   ============================ */
.community-header {
  margin-bottom: 2.5rem;
}

.menu-header {
  margin-bottom: 1.5rem;
}

.menu-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.6rem 2.35rem;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

/* Column styles (shared) */
.menu-col {
  text-align: left;
  padding: 0 0.5rem;
}

.menu-col h3 {
  margin-bottom: 0.8rem;
  text-align: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.55rem;
  color: var(--brown);
  line-height: 1.4;
  font-size: 1.02rem;
}

.item-name {
  display: flex;
  align-items: end;
  min-width: 0;
  font-weight: 600;
  color: var(--brown);
}

.item-name::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted rgba(74, 53, 38, 0.45);
  margin: 0 0.45rem 0.26rem;
}

.item-price {
  min-width: 2rem;
  text-align: right;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.menu-item:hover .item-name,
.menu-item:hover .item-price {
  color: var(--terracotta);
}

/* Mobile */
@media (max-width: 900px) {
  .three-col-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .tier-grid {
    padding: 0.5rem 0;
  }

  .ripple-card {
    padding: 1.35rem 1rem;
  }

  .menu-card {
    max-width: 860px;
    width: 100%;
    padding: 1.35rem 1rem;
  }

  .menu-col {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 0.25rem 0;
  }

  .menu-list {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .menu-item {
    width: 100%;
    line-height: 1.45;
    letter-spacing: 0.01em;
    font-size: 0.96rem;
  }
}

/*Membership*/
.membership-intro {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 4.5rem;
}

/* ============================
   VISIT SECTION
   ============================ */
.visit-card {
  text-align: center;
}

.visit-info h3 {
  margin-bottom: 1.5rem;
}

.visit-info p {
  margin-bottom: 1.2rem;
}

.visit-map iframe {
  width: 100%;
  min-height: 320px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .visit-map iframe {
    min-height: 260px;
  }
}

/* FAQ accordion */   
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  border: 2px solid rgba(94, 85, 135, 0.8);
  border-radius: 12px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 3px 8px rgba(74, 53, 38, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.15rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.18s ease;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  font-size: 1rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #E9E0D2;
  transition: max-height 0.3s ease;
  padding: 0 1.2rem;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  padding: 1rem 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact form fields */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  font-weight: 600;
  color: #4A3526;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 2px solid rgba(94, 85, 135, 0.85);
  border-radius: 8px;
  background: rgba(233, 224, 210, 0.9);
  color: var(--brown);
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(179, 86, 66, 0.12);
}

.form-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem; 
  border-color: transparent;
}

.form-cta .ripple-btn {
  border: none;
}

/* ===========================
   FOOTER BASE
   =========================== */
.footer {
  background: transparent;
  color: #E9E0D2; 
  padding: 1.5rem 0 1rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-bottom {
  margin-top: 0.75rem;
  color: #E9E0D2;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.75;
  text-align: center;
  width: 100%;
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   BRAND
   =========================== */
.footer-brand h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.3rem;
  text-align: center;
}

.footer-brand p {
  font-size: 1rem;
  opacity: 0.9;
}

.footer-tagline {
  color: #E9E0D2;
}

/* ===========================
   LINKS ROW
   =========================== */
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

.footer-links-row a {
  color: #E9E0D2; /* cream links */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease, opacity 0.18s ease;
}

/* ===========================
   ICONS
   =========================== */
.icon {
  width: 18px;
  height: 18px;
  fill: #E9E0D2; /* cream icons */
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* ===========================
   HOVER EFFECTS
   =========================== */
.footer-links-row a:hover {
  color: var(--terracotta);
  position: relative;
}

.footer-links-row a:hover .icon {
  transform: none;
}

.footer-links-row a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: rgba(179, 86, 66, 0.7);
}

@keyframes rippleWave {
  0% { transform: scaleX(0.2); opacity: 0.8; }
  100% { transform: scaleX(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ripple-card:hover {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  .nav-links a,
  .ripple-card,
  .faq-item,
  .form-group input,
  .form-group textarea {
    border-width: 2px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(77, 111, 57, 0.08);
  }
}

/* ===========================
   MOBILE FOOTER
   =========================== */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-inner {
    gap: 0.35rem 0;
    padding: 0.35rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-brand {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    display: block;
    width: 100%;
    text-align: center;
    flex: 0 0 auto;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.18rem 0.5rem;
    width: 100%;
    margin-left: 0;
    padding-top: 0.08rem;
  }

  .nav-links a {
    font-size: 0.72rem;
    padding: 0.22rem 0.18rem;
    white-space: nowrap;
    line-height: 1.35;
    flex: 0 0 auto;
    min-width: 0;
  }

  .nav-links a:nth-child(-n + 4) {
    width: auto;
  }

  .nav-links a:nth-child(n + 5) {
    margin-top: 0.05rem;
  }

  .page-section {
    padding-top: 108px;
  }

  .ripple-card {
    padding: 1.25rem 0.9rem;
  }

  .menu-card {
    padding: 1.25rem 0.9rem;
  }

  .tier-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.5rem 0;
  }

  .ripple-heading {
    font-size: 1.25rem;
  }

  .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .ripple-btn {
    width: auto;
    display: inline-block;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links-row {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 480px) {
  .nav-brand {
    font-size: 0.98rem;
  }

  .nav-links {
    justify-content: center;
    gap: 0.12rem 0.32rem;
  }

  .nav-links a {
    font-size: 0.62rem;
    padding: 0.18rem 0.12rem;
  }

  .ripple-copy {
    gap: 0.8rem;
  }

  .ripple-text,
  .menu-item {
    font-size: 0.96rem;
  }
}


