/* ============================================
   Bowl6610 Design System v1.0 — Components
   Buttons, cards, info strip, accordions
   ============================================ */

/* === Buttons ===
   Sharp 4px corners. Four variants:
   - Plum (primary CTA)
   - Green (primary brand)
   - Outline light (on dark backgrounds)
   - Outline (on light backgrounds)
*/
.bowl-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.bowl-btn--plum {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.bowl-btn--plum:hover {
  background: var(--plum-bright);
  border-color: var(--plum-bright);
  color: var(--white);
}

.bowl-btn--green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.bowl-btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--cream);
}

/* Outline on light backgrounds */
.bowl-btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--border);
}

.bowl-btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

/* Outline on dark backgrounds */
.bowl-btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25);
}

.bowl-btn--outline-light:hover {
  border-color: var(--plum);
  color: var(--plum-light);
}

/* Small button variant */
.bowl-btn--sm {
  font-size: 0.78rem;
  padding: 0.55rem 1.1rem;
}

/* Full-width on mobile */
@media (max-width: 599px) {
  .bowl-btn--full-mobile {
    width: 100%;
    justify-content: center;
  }
}


/* === Cards ===
   Sharp corners. White background. Plum accent on hover.
   Image area gets a 3px plum bottom edge.
*/
.bowl-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.bowl-card:hover {
  border-color: var(--plum);
}

.bowl-card__img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream-warm);
}

/* Plum accent edge on card images */
.bowl-card__img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--plum);
}

.bowl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.bowl-card:hover .bowl-card__img img {
  transform: scale(1.05);
}

.bowl-card__body {
  padding: 1.5rem;
}

.bowl-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.bowl-card__body p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.bowl-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--duration) var(--ease);
  text-decoration: none;
}

.bowl-card__link:hover {
  gap: 0.55rem;
  color: var(--plum-bright);
}

.bowl-card__link::after {
  content: '\2192';
}


/* === Info Strip ===
   Horizontal bar for meeting info (day, time, venue).
   Green and plum variants.
*/
.bowl-strip {
  padding: 1.1rem 0;
}

.bowl-strip--plum {
  background: var(--plum);
  color: var(--white);
}

.bowl-strip--green {
  background: var(--green);
  color: var(--cream);
}

.bowl-strip__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.88rem;
}

@media (min-width: 600px) {
  .bowl-strip__row {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.bowl-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.bowl-strip__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.75;
}


/* === Accordions ===
   FAQ-style. White background, border, plum active indicator.
*/
.bowl-accordion {
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.bowl-accordion[open] {
  border-left: 3px solid var(--plum);
}

.bowl-accordion summary {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  transition: color var(--duration) var(--ease);
}

.bowl-accordion summary::-webkit-details-marker {
  display: none;
}

.bowl-accordion summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--plum);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease);
}

.bowl-accordion[open] summary::after {
  content: '\2212';
}

.bowl-accordion summary:hover {
  color: var(--plum);
}

.bowl-accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--stone);
}


/* === Facts / Stats ===
   Small stat blocks (e.g., "1948 — Founded")
*/
.bowl-facts {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.bowl-fact__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}

.bowl-fact__label {
  font-size: 0.7rem;
  color: var(--stone-light);
  margin-top: 0.2rem;
}

/* Dark background variant */
.bowl-section--green .bowl-facts,
.bowl-section--green-dark .bowl-facts {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.bowl-section--green .bowl-fact__num,
.bowl-section--green-dark .bowl-fact__num {
  color: var(--plum-light);
}

.bowl-section--green .bowl-fact__label,
.bowl-section--green-dark .bowl-fact__label {
  color: var(--sage);
}


/* === WPForms Contact Form ===
   Larger input fields to match design system spacing
*/
.wpforms-form .wpforms-field input[type="text"],
.wpforms-form .wpforms-field input[type="email"],
.wpforms-form .wpforms-field textarea {
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-sans);
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.wpforms-form .wpforms-field textarea {
  min-height: 150px;
}

.wpforms-form .wpforms-field input:focus,
.wpforms-form .wpforms-field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(42, 96, 85, 0.15);
}

.wpforms-form button[type="submit"] {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  background: var(--plum);
  color: var(--white);
  border: 1.5px solid var(--plum);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.wpforms-form button[type="submit"]:hover {
  background: var(--plum-bright);
  border-color: var(--plum-bright);
}


/* === Image with Plum Accent ===
   4px plum bottom border on images in about/split sections
*/
.bowl-img-accent {
  position: relative;
  overflow: hidden;
}

.bowl-img-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--plum);
}

.bowl-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


