@charset "UTF-8";
/* =========================
   Rune Stone Community Page
   main.scss (full replacement)
   Accent: #d30000
   Fonts: Lato (titles) + Quicksand (body/buttons)
   ========================= */
/* Basic reset-ish */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  background: radial-gradient(900px 600px at 15% 10%, rgba(211, 0, 0, 0.65), transparent 60%), radial-gradient(800px 500px at 85% 0%, rgba(120, 0, 0, 0.45), transparent 60%), linear-gradient(135deg, #5c0000 0%, #8a0000 45%, #4a0000 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.small {
  font-size: 0.875rem;
  opacity: 0.85;
}

:root {
  --rs-red: #d30000;
  --rs-red-dark: #a90000;
  /* Panels on dark bg */
  --panel: rgba(255,255,255,1);
  --panel-solid: #fff;
  --border: rgba(0,0,0,0.10);
  --muted: rgba(0,0,0,0.8);
  --radius: 16px;
  --shadow: 0 16px 42px rgba(0,0,0,0.28);
  --shadow-soft: 0 10px 24px rgba(0,0,0,0.16);
  --title-font: "Lato", system-ui, sans-serif;
  --body-font: "Quicksand", system-ui, sans-serif;
}

/* Buttons (RuneStone-like: red filled CTA) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--body-font);
  letter-spacing: 0.15px;
  background: var(--rs-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.btn:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
  text-align: center;
}

.btn--small {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* Light/secondary button option */
.btn--light {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.btn--light:hover {
  background: #f6f6f6;
}

/* Optional arrow like their CTA buttons */
.btn--arrow {
  position: relative;
  padding-right: 2.55rem;
}

.btn--arrow::after {
  content: "→";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  opacity: 0.95;
}

.link {
  text-decoration: underline;
}

.linkbtn {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-family: var(--body-font);
}

.iconbtn {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--panel-solid);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.iconbtn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(211, 0, 0, 0.25);
}

/* Page wrapper */
.community {
  padding: 1.5rem;
}

/* Header */
.community__header {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.community__logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo */
.logo img {
  height: 68px;
  width: auto;
  display: block;
}

.community__title {
  margin: 0;
  text-align: center;
  font-size: 2.05rem;
  font-weight: 800;
  font-family: var(--title-font);
  letter-spacing: 0.2px;
}

.community__toplinks {
  text-align: right;
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.community__backlink {
  text-decoration: underline;
}

/* Main grid */
.community__grid {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 1.6rem; /* more breathing room */
}

.community__left,
.community__center,
.community__right,
.community__main {
  display: grid;
  gap: 1.6rem;
  align-content: start;
}

/* Cards */
.card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card--tall {
  min-height: 260px;
  display: grid;
  gap: 1.25rem; /* more vertical spacing between stacked cards */
  align-content: start;
}

.card--pinned {
  padding: 1.1rem 1.2rem;
}

/* Card titles/text */
.card__title {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  font-family: var(--title-font);
  font-weight: 900;
  letter-spacing: 0.2px;
  text-align: center;
}

.card__text {
  margin: 0.25rem 0 0.75rem;
  color: #111;
}

.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card__sub {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card--feed {
  min-height: 520px;
}

/* Right column title */
.community__rightTitle {
  text-align: center;
  margin: 0 0 0.85rem;
  font-size: 1.7rem;
  font-weight: 900;
  font-family: var(--title-font);
  color: #f7f7f7;
}

/* Feed */
.feed {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.55rem;
}

.feed__item {
  padding: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feed__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-family: var(--title-font);
  font-weight: 900;
}

.feed__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.feed__body {
  margin: 0.4rem 0 0;
}

/* Calendar card */
.card--calendar {
  display: grid;
  gap: 1.15rem;
}

/* Calendar */
.calendar__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.calendar__month {
  text-align: center;
  font-weight: 900;
  font-family: var(--title-font);
  letter-spacing: 0.2px;
}

.calendar__dow, .calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
}

.calendar__dow span {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.day {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.95rem;
  background: #fff;
  padding: 0.6rem 0;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.day:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(211, 0, 0, 0.22);
}

.day--muted {
  opacity: 0.35;
}

.day--today {
  border-color: rgba(211, 0, 0, 0.8);
}

.day--selected {
  outline: none;
  background: rgba(211, 0, 0, 0.08);
  border-color: rgba(211, 0, 0, 0.75);
}

/* Days with events: red border highlight (no dot) */
.day--has-events {
  border-color: rgba(211, 0, 0, 0.75);
}

.day--has-events:hover {
  border-color: rgb(211, 0, 0);
  border-width: 2px;
}

/* Events list */
.events__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.events__title {
  margin: 0;
  font-size: 1rem;
  font-family: var(--title-font);
  font-weight: 900;
}

.events__list {
  display: grid;
  gap: 0.85rem;
  margin: 0.75rem 0 1rem;
}

.events__item {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 0.85rem 0.95rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.events__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  border-color: rgba(211, 0, 0, 0.25);
}

.events__name {
  font-weight: 900;
  font-family: var(--title-font);
}

.events__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}

.events__desc {
  margin-top: 6px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.8);
}

/* ↗ indicator ONLY for clickable event items (anchors) */
a.events__item {
  position: relative;
  padding-right: 2.5rem; /* space for arrow */
}

a.events__item::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  transition: transform 120ms ease, color 120ms ease;
}

a.events__item:hover::after {
  transform: translate(1px, -1px);
  color: var(--rs-red);
}

/* Responsive */
@media (max-width: 980px) {
  .community__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .community__toplinks {
    text-align: center;
    justify-items: center;
  }
  .community__grid {
    grid-template-columns: 1fr;
  }
}
/* Google Form wrapper page */
.google-form-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(900px 600px at 15% 10%, rgba(211, 0, 0, 0.65), transparent 60%), radial-gradient(800px 500px at 85% 0%, rgba(120, 0, 0, 0.45), transparent 60%), linear-gradient(135deg, #5c0000 0%, #8a0000 45%, #4a0000 100%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
