
@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');
@font-face {
  font-family:'Rumble Brave';
  src: url('fonts/rumble_brave-webfont.woff2') format('woff2'),
       url('fonts/rumble_brave-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #000000;
  min-height: 100%;
}

.faculty-glyphic-regular {
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: transparent;
  font-family: "Faculty Glyphic", sans-serif;
  position: relative;
  margin: 0px auto;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Starfield + jewel sparkles — elements from starfield.js */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Classic 5-point star silhouette (clips gradients to a star, not a square) */
.starfield__star,
.starfield__jewel {
  -webkit-clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 100%,
    50% 78%,
    21% 100%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 100%,
    50% 78%,
    21% 100%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.starfield__star {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  filter: var(--star-glow, none);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(var(--star-r), var(--star-g), var(--star-b), var(--star-a)) 0%,
      rgba(var(--star-r), var(--star-g), var(--star-b), calc(var(--star-a) * 0.38)) 28%,
      transparent 58%
    ),
    repeating-conic-gradient(
      from var(--star-rot, 0deg) at 50% 50%,
      transparent 0deg 19deg,
      rgba(var(--star-r), var(--star-g), var(--star-b), calc(var(--star-a) * 0.88)) 19deg 21.5deg,
      transparent 21.5deg 45deg
    ),
    repeating-conic-gradient(
      from var(--star-rot2, 22.5deg) at 50% 50%,
      transparent 0deg 20.5deg,
      rgba(var(--star-r), var(--star-g), var(--star-b), calc(var(--star-a) * 0.42)) 20.5deg 21.25deg,
      transparent 21.25deg 45deg
    );
  background-color: transparent;
}

.starfield__star--a {
  animation-name: starfield-twinkle-a;
}

.starfield__star--b {
  animation-name: starfield-twinkle-b;
}

.starfield__star--c {
  animation-name: starfield-twinkle-c;
}

@keyframes starfield-twinkle-a {
  0%,
  100% {
    opacity: 0.12;
    transform: translate(-50%, -50%) scale(0.65);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@keyframes starfield-twinkle-b {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.85);
  }
  38% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.12);
  }
  62% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.75);
  }
}

@keyframes starfield-twinkle-c {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

/* Few larger “jewel” sparkles — richer burst + glint lines + glow */
.starfield__jewel {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(var(--jewel-r), var(--jewel-g), var(--jewel-b), var(--jewel-a)) 0%,
      rgba(255, 255, 255, calc(var(--jewel-a) * 0.55)) 18%,
      rgba(var(--jewel-r), var(--jewel-g), var(--jewel-b), calc(var(--jewel-a) * 0.25)) 38%,
      transparent 62%
    ),
    repeating-conic-gradient(
      from var(--jewel-rot, 0deg) at 50% 50%,
      transparent 0deg 17deg,
      rgba(255, 255, 255, calc(var(--jewel-a) * 0.75)) 17deg 20deg,
      rgba(var(--jewel-r), var(--jewel-g), var(--jewel-b), calc(var(--jewel-a) * 0.9)) 20deg 22deg,
      transparent 22deg 45deg
    ),
    repeating-conic-gradient(
      from var(--jewel-rot2, 20deg) at 50% 50%,
      transparent 0deg 19.5deg,
      rgba(255, 255, 255, calc(var(--jewel-a) * 0.35)) 19.5deg 20.5deg,
      transparent 20.5deg 45deg
    );
  background-color: transparent;
}

.starfield__jewel::before,
.starfield__jewel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340%;
  height: 1.5px;
  max-height: 2px;
  transform-origin: center center;
  margin: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  opacity: 0.75;
}

.starfield__jewel::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.starfield__jewel::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.starfield__jewel--a {
  animation-name: jewel-sparkle-a;
}

.starfield__jewel--b {
  animation-name: jewel-sparkle-b;
}

.starfield__jewel--c {
  animation-name: jewel-sparkle-c;
}

@keyframes jewel-sparkle-a {
  0%,
  100% {
    opacity: 0.65;
    filter: var(--jewel-glow, none) brightness(0.88) saturate(1.05);
    transform: translate(-50%, -50%) scale(1);
  }
  35% {
    opacity: 1;
    filter: var(--jewel-glow, none) brightness(1.45) saturate(1.35);
    transform: translate(-50%, -50%) scale(1.12);
  }
  70% {
    opacity: 0.82;
    filter: var(--jewel-glow, none) brightness(1.15) saturate(1.2);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes jewel-sparkle-b {
  0%,
  100% {
    opacity: 0.7;
    filter: var(--jewel-glow, none) brightness(0.92) saturate(1.1);
    transform: translate(-50%, -50%) scale(1);
  }
  20% {
    opacity: 0.95;
    filter: var(--jewel-glow, none) brightness(1.25) saturate(1.25);
    transform: translate(-50%, -50%) scale(1.06);
  }
  45% {
    opacity: 1;
    filter: var(--jewel-glow, none) brightness(1.55) saturate(1.4);
    transform: translate(-50%, -50%) scale(1.14);
  }
  80% {
    opacity: 0.78;
    filter: var(--jewel-glow, none) brightness(1.05) saturate(1.15);
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes jewel-sparkle-c {
  0%,
  100% {
    opacity: 0.68;
    filter: var(--jewel-glow, none) brightness(0.9) saturate(1.08);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    filter: var(--jewel-glow, none) brightness(1.5) saturate(1.38);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.starfield--static .starfield__star,
.starfield--static .starfield__jewel {
  animation: none;
}

.starfield--static .starfield__jewel {
  filter: var(--jewel-glow, none);
}

body > .content,
body > .footer {
  position: relative;
  z-index: 1;
}

.title {
  background: transparent;
  max-height: 200px;
  margin: 0px;
  float: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

img {
  object-fit: scale-down;
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.logo {
  height: 200px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  gap: 12px;
  box-sizing: border-box;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.navbar {
  margin: 0px;
  text-align: left;
  float: none;
  flex: 1 1 auto;
  min-width: 0;
}

.socialbar {
  margin: 0px;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-self: center;
}

.socialbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.social {
  margin: 0px;
  height: 30px;
  width: auto;
  float: none;
  flex-shrink: 0;
}

.social a:hover img {
  height: 40px;
}

/* Social icons: override global img { width/height 100% } — fixes stretched/misaligned icons on iOS / Chrome */
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.social a img {
  display: block;
  width: auto;
  height: 30px;
  max-height: 36px;
  max-width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

a {
  color: #9b6d31;
  font-weight: bold;
  font-family: "Rumble Brave", sans-serif;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: .75px;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  float: none;
  display: inline-block;
  padding: 0px 20px 0px 0px;
}

.navbar a[aria-current="page"] {
  color: #7cb2b8;
  border-bottom: 2px solid #7cb2b8;
  padding-bottom: 2px;
}

.navbar a[aria-current="page"]:hover {
  color: #a8d4d8;
  border-bottom-color: #a8d4d8;
}

a:hover {
  color: #d9d9d9;
 }

a:focus-visible,
button:focus-visible {
  outline: 2px solid #7cb2b8;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .slideshow__track {
    transition: none;
  }

  .starfield__star,
  .starfield__jewel {
    animation: none !important;
  }
}

.content {
  background: transparent;
  margin: 0px auto;
  padding: 20px;
  max-width: 1000px;
}

/* Tighter gap between nav/logo strip and main content (index, calendar, etc.) */
.content:has(.title) {
  padding-bottom: 8px;
}

.content + .content {
  padding-top: 8px;
}

.header {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.header h3 {
  margin: 0 0 12px 0;
}

h1 {
  text-align: center;
}

h2 {
  font-family: "Rumble Brave", sans-serif;
  font-size: 25px;
  color: #7cb2b8;
  letter-spacing: 1px;
}

/* Large section title — calendar main heading, contact intro, etc. */
.page-heading {
  text-align: center;
  margin: 0 0 16px 0;
  color: #7cb2b8;
  font-size: clamp(1.375rem, 0.85rem + 2.2vw, 2.25rem);
  line-height: 1.2;
}

h3 {
  font-family: "Rumble Brave", sans-serif;
  font-size: 45px;
  color: #d9d9d9;
  letter-spacing: 1px;
}

.paragraph {
  margin: 0px 75px auto;
  padding: 0px;
}

.paragraph h1 {
  text-align: center;
}

.paragraph h2 {
  text-align: center;
}

.text {
  color: #d9d9d9;
}

.paragraph .text p {
  text-align: left;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 16px;

}


.box {
 align-content: center;
 padding: 20px 0px 20px 0px;
 height: auto;
}

.slideshow {
  width: 100%;
  margin: 0px;
  float: none;
  padding: 0px;
  position: relative;
  display: block;
}

.slideshow__viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slideshow__track {
  display: flex;
  width: 100%;
  transition: transform 350ms ease;
  will-change: transform;
}

.slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.slideshow__slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
  padding: 10px 0;
}

.slideshow__slide.is-active {
  display: flex;
}

.slideshow__media {
  object-fit: scale-down;
  height: 250px;
  width: min(360px, 40vw);
  display: block;
  margin: 0px;
  flex: 0 0 auto;
}

.slideshow__content {
  flex: 1 1 auto;
  min-width: 0;
}

.slideshow__content h2 {
  text-align: center;
  margin-top: 0;
}

.slideshow__content .text p {
  text-align: left;
  margin: 0;
}

.slideshow__btn {
  appearance: none;
  border: 1px solid rgba(217, 217, 217, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #d9d9d9;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  margin: 0 8px;
}

.slideshow__btn:hover {
  border-color: rgba(217, 217, 217, 0.6);
}

.slideshow__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 0px;
}

.slideshow__dot {
  appearance: none;
  border: 1px solid rgba(217, 217, 217, 0.45);
  background: transparent;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

.slideshow__dot.is-active {
  background: #7cb2b8;
  border-color: #7cb2b8;
}

/* footer */

.footer {
  text-align: center;
  color: #d9d9d9;
}

/* contact form */

.contact {
  width: 100%;
  max-width: min(36rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact .text ul {
  margin: 0 0 12px 0;
  padding-left: 1.5em;
}

.contact__form {
  margin-top: 14px;
}

.contact__row {
  margin: 14px 0;
}

.contact__label {
  display: block;
  font-family: "Rumble Brave", sans-serif;
  letter-spacing: 0.5px;
  color: #7cb2b8;
  margin-bottom: 6px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(217, 217, 217, 0.35);
  color: #d9d9d9;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 16px;
}

.contact__input--captcha {
  width: 140px;
  max-width: 100%;
}

.contact__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: rgba(124, 178, 184, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 178, 184, 0.18);
}

.contact__row--actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.contact__submit,
.contact__secondary {
  appearance: none;
  border: 1px solid rgba(217, 217, 217, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #d9d9d9;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Rumble Brave", sans-serif;
  letter-spacing: 0.75px;
}

.contact__submit:hover,
.contact__secondary:hover {
  border-color: rgba(217, 217, 217, 0.6);
}

.contact__status p {
  margin: 10px 0 0 0;
}

.contact__help p {
  margin: 8px 0 0 0;
  font-size: 14px;
}

/* calendar page — match index: body text #d9d9d9, section h2 #7cb2b8 */

.calendar {
  max-width: 1000px;
  margin: 0 auto;
  color: #d9d9d9;
}

.calendar .text,
.calendar .calendar__dates,
.calendar .calendar__month-card-dates,
.calendar .calendar__month-card-note {
  color: #d9d9d9;
}

.calendar__hours {
  text-align: center;
  margin: 0 0 8px 0;
}

.calendar__disclaimer {
  text-align: center;
  margin: 16px auto 0;
  max-width: 40rem;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.92;
}

.calendar-widget {
  margin: 0 0 8px 0;
}

.calendar-widget__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.calendar-widget__title {
  margin: 0;
  color: #d9d9d9;
  font-family: "Rumble Brave", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
}

.calendar-widget__btn {
  appearance: none;
  border: 1px solid rgba(217, 217, 217, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: #d9d9d9;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.calendar-widget__btn:hover:not(:disabled) {
  border-color: rgba(217, 217, 217, 0.6);
}

.calendar-widget__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-widget__grid {
  border: 1px solid rgba(217, 217, 217, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.calendar-widget__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-widget__row--dow {
  background: rgba(124, 178, 184, 0.15);
}

.calendar-widget__dow {
  padding: 8px 4px;
  text-align: center;
  font-family: "Rumble Brave", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #d9d9d9;
}

.calendar-widget__cell {
  min-height: 56px;
  padding: 6px 4px;
  text-align: center;
  border-top: 1px solid rgba(217, 217, 217, 0.12);
  border-right: 1px solid rgba(217, 217, 217, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  box-sizing: border-box;
  color: #d9d9d9;
}

.calendar-widget__cell:nth-child(7n) {
  border-right: none;
}

.calendar-widget__row--dow .calendar-widget__dow:nth-child(7n) {
  border-right: none;
}

.calendar-widget__cell--empty {
  background: rgba(0, 0, 0, 0.2);
  min-height: 56px;
}

.calendar-widget__cell--sale {
  background: rgba(124, 178, 184, 0.28);
  color: #d9d9d9;
}

.calendar-widget__cell--sale .calendar-widget__daynum {
  font-weight: 700;
}

.calendar-widget__daynum {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 15px;
  color: #d9d9d9;
}

.calendar-widget__open {
  display: block;
  font-family: "Rumble Brave", sans-serif;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #7cb2b8;
  font-weight: 700;
  margin-top: 2px;
}

.calendar-widget__cell--sale .calendar-widget__open {
  color: #7cb2b8;
}

.calendar-widget__hours-inline {
  display: block;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 9px;
  line-height: 1.15;
  color: #d9d9d9;
  margin-top: 2px;
}

.calendar-widget__sublabel {
  font-size: 10px;
  line-height: 1;
  color: #d9d9d9;
  opacity: 0.9;
}

.calendar-widget__holiday-name {
  display: block;
  color: #d9d9d9;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 4px;
  text-align: center;
  font-weight: 600;
}

.calendar-widget__cell--sale .calendar-widget__holiday-name {
  color: #d9d9d9;
}

.calendar-widget__cell--holiday:not(.calendar-widget__cell--sale) {
  background: transparent;
}

.calendar-widget__cell--sale.calendar-widget__cell--holiday,
.calendar-widget__cell--both {
  box-shadow: none;
}

.calendar__dates {
  margin-top: 36px;
  padding-top: 32px;
  position: relative;
  border-top: none;
}

/* Ornamental divider: soft gradient line + centered accent */
.calendar__dates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, 92%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 178, 184, 0.2) 18%,
    rgba(124, 178, 184, 0.95) 48%,
    #c5e8ec 50%,
    rgba(124, 178, 184, 0.95) 52%,
    rgba(124, 178, 184, 0.2) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 14px rgba(124, 178, 184, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06);
}

.calendar__dates::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-radius: 1px;
  background: linear-gradient(145deg, #9fd4da 0%, #5a9aa3 100%);
  box-shadow:
    0 0 10px rgba(124, 178, 184, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.calendar__list-heading {
  margin: 0 0 22px 0;
  text-align: center;
  font-family: "Rumble Brave", sans-serif;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: #7cb2b8;
}

.calendar__schedule {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.calendar__month-card {
  margin: 0;
  padding: 20px 22px 22px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(217, 217, 217, 0.14);
  border-radius: 12px;
  border-top: 4px solid #7cb2b8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.calendar__month-card-title {
  margin: 0;
  font-family: "Rumble Brave", sans-serif;
  font-size: 22px;
  letter-spacing: 0.6px;
  color: #7cb2b8;
  line-height: 1.2;
}

.calendar__month-card-dates {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 19px;
  line-height: 1.45;
  color: #d9d9d9;
}

.calendar__month-card-dates .calendar__days-label {
  font-size: 0.88em;
  letter-spacing: 0.06em;
  color: #b8d4d8;
  margin-right: 0.35em;
}

.calendar__month-card-dates .calendar__range-line {
  display: block;
}

.calendar__month-card-note {
  margin: 0;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(217, 217, 217, 0.14);
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: #d9d9d9;
  opacity: 0.95;
}

@media screen and (max-width: 520px) {
  .calendar__list-heading {
    font-size: 24px;
  }

  .calendar__schedule {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar__month-card {
    padding: 18px 20px;
  }

  .calendar__month-card-title {
    font-size: 20px;
  }

  .calendar__month-card-dates {
    font-size: 18px;
  }

  .calendar__month-card-note {
    font-size: 15px;
  }
}


/* responsive */

@media screen and (max-width: 1024px) {
  .content {
    max-width: 900px;
    margin: 0 auto;
  }  
}
  
@media screen and (max-width: 800px) {
  .content {
    max-width: 600px;
    margin: 0 auto;
  }

  .paragraph {
    margin-left: 40px;
    margin-right: 40px;
  }

  .slideshow__slide {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 6px 0;
  }

  .slideshow__media {
    height: 200px;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .paragraph {
    margin-left: 24px;
    margin-right: 24px;
  }

  .content {
    padding: 16px;
  }

  .content:has(.title) {
    padding-bottom: 8px;
  }

  .content + .content {
    padding-top: 8px;
  }
}

/* Nav + social: stack and center so nothing crowds or overflows */
@media screen and (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .navbar {
    width: 100%;
    max-width: 100%;
    flex: none;
    min-width: 0;
  }

  .navbar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    row-gap: 6px;
  }

  .navbar ul li {
    padding: 0;
    display: block;
  }

  .socialbar {
    width: 100%;
    max-width: 100%;
    flex: none;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .socialbar ul {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .social {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 0;
    list-style: none;
  }

  .social a {
    box-sizing: border-box;
    min-width: 44px;
    min-height: 44px;
  }

  .social a img {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
  }
}

@media screen and (max-width: 520px) {
  .slideshow__media {
    height: 160px;
  }

  .slideshow__btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin: 0 6px;
  }
}

@media screen and (max-width: 480px) {
  .content {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
  }

  .content:has(.title) {
    padding-bottom: 8px;
  }

  .content + .content {
    padding-top: 8px;
  }

  .title {
    height: 100px;
    margin: 0 auto;
  }

  .logo {
    height: 100%;

  }

  .social a:hover img,
  .social a:active img {
    height: 30px;
    max-height: 30px;
  }

  a {
    font-size: 12px;
  }

  .navbar a {
    font-size: 14px;
  }

  .header {
    font-size: 12px;
  }

  h2 {
    font-size: 16px;
  }
  
  h3 {
    font-size: 16px;
  }

  .paragraph {
    margin-left: 12px;
    margin-right: 12px;
    padding: 0px;
  }

  .paragraph .text p {
    font-size: 12px;
  }

  .slideshow__media {
    height: 100px;
    width: 100%;
  }

  .box {
    padding: 20px 0px 40px 0px;
    height: auto;
   }

  .footer {
   font-size: 12px;
  }

  .calendar-widget__nav {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .calendar-widget__title {
    font-size: 18px;
  }

  .calendar-widget__cell {
    min-height: 48px;
    padding: 4px 2px;
  }

  .calendar-widget__dow {
    font-size: 11px;
    padding: 6px 2px;
  }

  .calendar-widget__daynum {
    font-size: 13px;
  }
}


/* Logo colors
 teal #7cb2b8
 Rust #9b6d31
 grey #d9d9d9
 Black #000
*/