/* ============================================
   UTAH VALLEY CLIMBING - Alpine Modern Theme
   ============================================ */

/* Fonts: Bebas Neue for headings (bold, athletic), Source Sans 3 for body */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* -------------------- CSS Variables -------------------- */
:root {
  /* Brand Colors */
  --green-primary: #2d5a3d;
  --green-light: #3d7a4d;
  --green-dark: #1d4a2d;
  --green-muted: #4a8c5a;

  /* Neutrals */
  --cream: #f9f6f1;
  --cream-dark: #f0ebe3;
  --charcoal: #2a2a2a;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;

  /* Accents */
  --accent-gold: #c9a227;
  --accent-stone: #8b8680;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1700px;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------- Reset & Base -------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1em;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* -------------------- Layout Utilities -------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.container--narrow {
  max-width: 1000px;
}

.container--wide {
  max-width: 1800px;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background-color: var(--white);
}

.section--green {
  background-color: var(--green-primary);
  color: var(--white);
}

.section--green h2,
.section--green h3 {
  color: var(--white);
}

/* Flex & Grid Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Text Utilities */
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--charcoal-light); }

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.nav__logo {
  height: 50px;
  width: auto;
}

.nav__logo img {
  height: 100%;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: 0.5rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav__link:hover {
  color: var(--green-primary);
  background: rgba(45, 90, 61, 0.05);
}

.nav__link.active {
  color: var(--green-primary);
}

.nav__cta {
  margin-left: var(--space-sm);
  padding: 0.6rem 1.5rem;
  background: var(--green-primary);
  color: var(--white) !important;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav__cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition-fast);
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .nav__cta {
    margin: var(--space-sm) 0 0 0;
    width: 100%;
    text-align: center;
  }
}

/* -------------------- Hero Section -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('/assets/photos/team/team-flex.png') center/cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(29, 74, 45, 0.8) 100%);
}

/* Mountain silhouette decoration */
.hero__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
}

.hero__mountains svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero__cta {
  display: inline-flex;
  gap: var(--space-sm);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn--primary {
  background: var(--white);
  color: var(--green-dark);
}

.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--green {
  background: var(--green-primary);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn--outline:hover {
  background: var(--green-primary);
  color: var(--white);
}

/* -------------------- Cards -------------------- */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card__body {
  padding: var(--space-md);
}

.card__title {
  margin-bottom: var(--space-xs);
}

.card__text {
  color: var(--charcoal-light);
  margin-bottom: var(--space-sm);
}

/* Profile Cards (Leadership) */
.profile-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.profile-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.profile-card__body {
  padding: var(--space-md);
}

.profile-card__name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.profile-card__pronouns {
  font-size: 0.875rem;
  color: var(--accent-stone);
  margin-bottom: var(--space-xs);
}

.profile-card__role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: var(--space-sm);
}

.profile-card__bio {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.profile-card__contact {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--green-primary);
}

/* -------------------- Feature Blocks -------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature {
  text-align: center;
  padding: var(--space-lg);
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.75rem;
}

.feature__title {
  margin-bottom: var(--space-xs);
}

.feature__text {
  color: var(--charcoal-light);
}

/* -------------------- Info Blocks (Team Pages) -------------------- */
.info-block {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
}

.info-block__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--cream-dark);
}

.info-block__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 1.25rem;
}

.info-block ul {
  margin-left: 1.5rem;
}

.info-block li {
  position: relative;
  padding: 0.5rem 0;
  padding-left: 1rem;
}

.info-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
}

/* -------------------- Pricing Table -------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-table th {
  background: var(--green-primary);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--cream);
}

/* -------------------- FAQ Accordion -------------------- */
.faq-list {
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-primary);
  transition: var(--transition-fast);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* -------------------- Document Cards (Files Page) -------------------- */
.doc-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.doc-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.doc-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 8px;
  font-size: 1.75rem;
}

.doc-card__info {
  flex: 1;
}

.doc-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.doc-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.doc-card__link {
  color: var(--green-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.doc-card__link:hover {
  color: var(--green-dark);
}

/* -------------------- Sponsor Cards -------------------- */
.sponsor-card {
  background: var(--white);
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sponsor-card__logo {
  max-height: 100px;
  max-width: 200px;
  margin: 0 auto var(--space-md);
  object-fit: contain;
}

.sponsor-card__name {
  margin-bottom: var(--space-xs);
}

.sponsor-card__desc {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* -------------------- Calendar Embed -------------------- */
.calendar-wrapper {
  background: var(--white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.calendar-notice {
  padding: var(--space-md);
  background: var(--cream);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 8px 8px 0;
  margin-bottom: var(--space-lg);
}

.calendar-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* -------------------- Contact Section -------------------- */
.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  transition: var(--transition-base);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-item__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
}

.contact-item__info {
  flex: 1;
}

.contact-item__label {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item__value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-primary);
}

/* -------------------- Footer -------------------- */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.footer__link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__link svg {
  width: 20px;
  height: 20px;
}

.footer__copyright {
  width: 100%;
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    width: 100%;
  }

  .footer__link {
    justify-content: center;
  }
}

/* -------------------- Page Headers -------------------- */
.page-header {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header__title {
  color: var(--white);
  margin-bottom: var(--space-xs);
  position: relative;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  position: relative;
}

/* -------------------- Image Gallery -------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .gallery--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery--4col {
    grid-template-columns: 1fr;
  }
}

.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* -------------------- Achievements Banner -------------------- */
.achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.achievement {
  text-align: center;
}

.achievement__year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent-gold);
  line-height: 1;
}

.achievement__title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

/* -------------------- Animations -------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* -------------------- Print Styles -------------------- */
@media print {
  .nav, .footer, .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
  }

  .section {
    padding: 1rem 0;
  }
}

/* -------------------- Calendar -------------------- */
.calendar-container {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.calendar-loading {
  text-align: center;
  padding: 3rem;
  color: var(--charcoal-light);
}

.calendar-error {
  text-align: center;
  padding: 2rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  margin-bottom: 1rem;
}

.calendar-error a {
  color: #dc2626;
  text-decoration: underline;
}

.calendar-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.calendar-info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-primary);
}

.calendar-info-card h4 {
  color: var(--green-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.calendar-info-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Calendar Widget */
.cal {
  font-family: inherit;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.cal-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.75rem;
  color: var(--green-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

.cal-nav {
  background: var(--green-primary);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav:hover {
  background: var(--green-dark);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 2rem;
}

.cal-day-header {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  padding: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--cream);
}

.cal-day:hover {
  background: var(--cream-dark);
}

.cal-day-empty {
  background: transparent;
  cursor: default;
}

.cal-day-empty:hover {
  background: transparent;
}

.cal-day-today {
  background: rgba(45, 90, 61, 0.15);
  font-weight: 700;
  color: var(--green-dark);
}

.cal-day-event {
  background: var(--green-primary);
  color: var(--white);
  font-weight: 600;
}

.cal-day-event:hover {
  background: var(--green-dark);
}

.cal-day-event.cal-day-today {
  background: var(--green-dark);
  color: var(--white);
}

.cal-events {
  border-top: 2px solid var(--cream-dark);
  padding-top: 1.5rem;
}

.cal-events h4 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.cal-no-events {
  color: var(--charcoal-light);
  text-align: center;
  padding: 2rem;
  font-style: italic;
}

.cal-event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cal-event-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--green-primary);
  transition: var(--transition-fast);
}

.cal-event-item:hover {
  background: var(--cream-dark);
}

.cal-event-item-detail {
  flex-direction: column;
  gap: 0.5rem;
}

.cal-event-date {
  font-weight: 600;
  color: var(--green-primary);
  min-width: 100px;
  font-size: 0.9rem;
}

.cal-event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cal-event-info strong {
  color: var(--charcoal);
}

.cal-event-time {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.cal-event-location {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.cal-event-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.cal-back-btn {
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--green-primary);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 0;
  font-weight: 600;
}

.cal-back-btn:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cal-grid {
    gap: 2px;
  }

  .cal-day {
    font-size: 0.8rem;
  }

  .cal-day-header {
    font-size: 0.7rem;
    padding: 0.25rem;
  }

  .cal-event-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cal-event-date {
    min-width: auto;
  }
}
