/* ============================================================
   Schalmont PTO Website — Main Stylesheet
   Colors: Dark Green #295c38 · Light Green #60b256
           Dark Gray #4c4b4b · Medium Gray #8e8d8d
           Light Gray #bfbebf · Yellow #eabf67
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&display=swap');

/* === CSS Custom Properties === */
:root {
  --primary:       #0b2a40;
  --primary-dark:  #051b2d;
  --primary-light: #1a84b0;
  --secondary:     #2cd6ff;
  --secondary-dark:#1aa8c2;
  --white:         #ffffff;
  --light-bg:      #f6f9fb;
  --border:        rgba(15, 23, 42, 0.12);
  --text:          #0f172a;
  --text-light:    #4b5563;
  --success:       #22c55e;
  --success-light: #d1fae5;
  --error:         #ef4444;
  --error-light:   #fee2e2;
  --warning:       #f59e0b;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.10);
  --shadow:        0 2px 10px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 30px rgba(0,0,0,0.18);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     26px;
  --transition:    0.2s ease;
  --nav-height:    74px;
}

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

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

body {
  font-family: 'Urbanist', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a  { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

/* === Layout Utilities === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.grid-2     { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center{ text-align: center; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mb-2  { margin-bottom: 16px; }
.mb-4  { margin-bottom: 32px; }
.hidden { display: none !important; }

/* === Navigation === */
.site-header {
  background: linear-gradient(135deg, #053654 0%, #109fdb 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--nav-height) + 14px); /* add vertical padding */
  gap: 16px;
  padding: 6px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 0;
}

/* Dark-background logo (used in nav + footer on dark green) */
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* Increase logo size for larger screens */
@media (min-width: 1024px) {
  .nav-logo-img {
    height: 84px;
  }
}

/* Color logo (used on white/light backgrounds) */
.logo-color {
  height: 70px;
  width: auto;
  display: block;
}

.footer-logo-circle {
  margin-bottom: 16px;
}
.footer-logo-circle img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Fallback text brand (shown when no logo image) */
.nav-logo {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-brand-text { color: var(--white); }
.nav-brand-text .school { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 13px; opacity: 0.85; display: block; letter-spacing: 0.5px; }
.nav-brand-text .org   { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 17px; color: var(--secondary); display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  background: rgba(255,255,255,0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  padding: 8px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(234,191,103,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-blue {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-blue:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(41,92,56,0.35);
}

.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

.btn-danger {
  background: var(--error);
  color: var(--white);
  border-color: var(--error);
}
.btn-danger:hover {
  background: #c53030;
  border-color: #c53030;
  color: var(--white);
}

/* === Page Hero === */
.page-hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/pagebg.webp') center/cover no-repeat;
  background-color: #0b2a40;
  padding: 56px 0 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.portfolio-hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/pagebg.webp') center/cover no-repeat;
  background-color: #0b2a40;
}

.resume-hero {
  padding-bottom: 55px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-hero h1 { color: #ffffff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 10px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.page-hero p  { color: #ffffff; opacity: 0.9; font-size: 17px; max-width: 600px; }
.page-hero .container { position: relative; z-index: 1; }

/* === Section Headings === */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.section-heading p  { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-heading .accent-line {
  width: 60px; height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* === Resume Layout === */
.resume-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

/* Force all resume sections to span full-width (stacked layout) */
.resume-grid > .resume-section,
.resume-main,
.resume-aside,
.resume-download {
  grid-column: 1 / -1;
}

.resume-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Make the first card feel less like a boxed sidebar element */
.resume-aside .card:first-child {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.resume-aside .card:first-child:hover {
  box-shadow: none;
  transform: none;
}

.resume-aside .card:first-child .card-body {
  padding: 0;
}

.resume-header h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.resume-header p {
  margin: 0 0 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.resume-meta {
  color: var(--text-light);
  font-size: 14px;
  margin: 14px 0 20px;
}

.resume-section {
  margin-top: 16px;
  padding: 18px 18px;
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
}

.resume-section + .resume-section {
  margin-top: 12px;
}

.resume-main > section:first-child {
  margin-top: 0;
}

.resume-section h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 16px;
  color: var(--primary-dark);
  position: relative;
}

.resume-section h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

.resume-top {
  text-align: center;
  padding: 16px 0 10px;
  margin: -18px 0 28px;
  border-bottom: 1px solid rgba(44,214,255,0.25);
}

.resume-top h2 {
  margin: 0 0 6px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.6px;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.1;
}

.resume-tagline {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 6px 0 10px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
}

.resume-top .resume-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.3;
}

.resume-top .resume-meta a {
  color: var(--primary-dark);
  text-decoration: none;
  border-bottom: 1px dashed rgba(15,23,42,0.3);
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.resume-top .resume-meta a:hover {
  color: var(--secondary);
  border-bottom-color: rgba(44,214,255,0.55);
  background: rgba(44,214,255,0.18);
}

.resume-download {
  display: flex;
  justify-content: center;
  margin: 26px 0 14px;
}

.resume-download .btn {
  padding: 14px 28px;
  font-size: 16px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

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

.link-grid-5 {
  grid-template-columns: repeat(5, minmax(100px, 1fr));
}

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

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(44,214,255,0.26);
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0,0,0,0.12);
  border-color: rgba(44,214,255,0.45);
  background: rgba(44,214,255,0.34);
}

.core-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.core-list.bulleted {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: disc outside;
  padding-left: 1.4rem;
  line-height: 1.2;
}

.core-list.bulleted li {
  margin-bottom: 0.4rem;
}

.core-list.bulleted li {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  color: var(--text);
  position: static;
}

.core-list.bulleted li::before {
  display: none;
}

.bullet-list {
  list-style: disc outside;
  margin: 0.4rem 0 0;
  padding-left: 1.3rem;
  color: var(--text);
}

.bullet-list li {
  margin-bottom: 0.35rem;
  color: var(--text);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}

.list-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.list-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.list-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bullet-list {
  margin: 0.4rem 0 0;
  padding-left: 1.3rem;
  line-height: 1.25;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.software-grid h4 {
  margin: 0 0 0.45rem;
  font-size: 15px;
  font-weight: 700;
}

.compact-list,
.compact-list > div,
.compact-list > .core-grid > div {
  line-height: 1.2;
}

.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.center {
  justify-items: center;
}

.core-list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  margin: 0;
  border-radius: 12px;
  background: rgba(44,214,255,0.08);
  border: 1px solid rgba(44,214,255,0.20);
  color: var(--primary-dark);
  font-weight: 500;
}

.core-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

.core-list.nested {
  padding-left: 1.5rem;
  margin-top: 12px;
}

.core-list.nested li {
  background: rgba(44,214,255,0.04);
  border-color: rgba(44,214,255,0.16);
}

.resume-item {
  margin-bottom: 28px;
}

/* === Metrics Infographics === */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 -12px 28px;
  padding: 0 12px;
}

.metric-card {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.metric-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(44,214,255,0.18);
  color: var(--secondary);
}

.metric-details {
  flex: 1;
}

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.resume-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.resume-item ul {
  margin: 10px 0 0 18px;
  padding: 0;
  list-style: disc;
  color: rgba(15, 23, 42, 0.9);
}

.resume-aside .card {
  margin-bottom: 18px;
  border: 1px solid rgba(44,214,255,0.16);
  box-shadow: 0 10px 18px rgba(15,23,42,0.05);
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-list li {
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 900px) {
  .resume-grid {
    grid-template-columns: 1fr;
  }
  .resume-main {
    order: 1;
  }
  .resume-grid > .resume-section,
  .resume-download {
    order: 2;
  }

  .core-list.bulleted {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media print {
  body, html {
    background: #fff;
    color: #111;
  }

  .site-header, .nav-toggle, .footer-bottom, .footer-grid, .nav-links, .link-btn {
    display: none !important;
  }

  .resume-top, .resume-section {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .resume-top h2 {
    font-size: 28px;
  }

  .resume-meta, .resume-tagline {
    color: #333 !important;
  }

  .core-list li,
  .resume-item,
  .skill-list li {
    page-break-inside: avoid;
  }

  .resume-grid {
    display: block;
  }
}


/* === Cards === */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body  { padding: 20px; }
.card-img   { width: 100%; height: 180px; object-fit: cover; background: var(--light-bg); }

/* === Forms === */
.form-group { margin-bottom: 18px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}

input[type=text], input[type=email], input[type=tel],
input[type=number], input[type=password], input[type=date],
input[type=time], select, textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41,92,56,0.12);
}
textarea { resize: vertical; min-height: 100px; }
select   { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }

/* === Alerts / Messages === */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-success { background: var(--success-light); color: #276749; border: 1px solid #9ae6b4; }
.alert-error   { background: var(--error-light);   color: #9b2c2c; border: 1px solid #fc8181; }
.alert-info    { background: #eaf4eb;               color: #1a3d24; border: 1px solid #a3d4a8; }

/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
}
.badge-gold    { background: #fff3cd; color: #856404; }
.badge-blue    { background: #d4edd6; color: var(--primary); }
.badge-green   { background: var(--success-light); color: #276749; }
.badge-red     { background: var(--error-light); color: #9b2c2c; }

/* === Home Hero === */
.home-hero {
  background: 
    linear-gradient(135deg, rgba(5, 27, 45, 0.55) 0%, rgba(13, 63, 92, 0.55) 100%),
    url("../images/julie-dion-cover-photo.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}


.home-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(44,214,255,0.18) 0%, transparent 70%);
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: -110px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(44,214,255,0.12) 0%, transparent 70%);
}
.home-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px !important;
}
.home-hero .eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.home-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.home-hero h1 span { color: var(--secondary); }
.hero-mobile-photo { display: none; }
.home-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Hero Slider Dots === */
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.25);
}
.hero-dot:hover { border-color: #fff; }

/* === School Calendar Tabs === */
.cal-tab-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-light);
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cal-tab-btn.active,
.cal-tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === Quick Nav Cards (Home) === */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.quick-nav-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px 24px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.quick-nav-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--primary);
}
.quick-nav-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--secondary);
}
.quick-nav-card h3 { font-size: 15px; font-weight: 700; }
.quick-nav-card p  { font-size: 12px; color: var(--text-light); }

/* === Announcements === */
.announcement-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.announcement-item:last-child { border-bottom: none; }
.announcement-date {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 8px 4px;
}
.announcement-date .day   { font-size: 22px; font-weight: 800; font-family: 'Urbanist', sans-serif; line-height: 1; }
.announcement-date .month { font-size: 11px; font-weight: 600; text-transform: uppercase; opacity: 0.85; }
.announcement-content h4  { font-size: 15px; margin-bottom: 4px; }
.announcement-content p   { font-size: 13px; color: var(--text-light); }

/* === Events Calendar === */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--white);
}
.calendar-nav h3 { color: var(--white); font-size: 18px; }
.cal-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-btn:hover { background: rgba(255,255,255,0.25); }

.calendar-grid {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.cal-weekday {
  text-align: center;
  padding: 10px 4px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day {
  min-height: 90px;
  padding: 8px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}
.cal-day:hover { background: #f0f4ff; }
.cal-day:nth-child(7n) { border-right: none; }
.cal-day.other-month .day-num { color: #c0c8d8; }
.cal-day.today { background: #fffbeb; }
.cal-day.today .day-num {
  background: var(--secondary);
  color: var(--primary-dark);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day.has-event { position: relative; }
.day-num { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.cal-event-dot {
  font-size: 11px;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 3px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.cal-event-dot.type-meeting  { background: var(--primary); }
.cal-event-dot.type-fundraiser { background: var(--success); }
.cal-event-dot.type-social   { background: #805ad5; }
.cal-event-dot.type-academic { background: var(--warning); }
.cal-event-dot.type-other    { background: var(--text-light); }

.event-list-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  transition: box-shadow var(--transition);
  background: var(--white);
}
.event-list-item:hover { box-shadow: var(--shadow); }
.event-date-badge {
  flex-shrink: 0;
  width: 58px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 4px;
  text-align: center;
}
.event-date-badge .eday   { font-size: 26px; font-weight: 800; font-family: 'Urbanist', sans-serif; line-height: 1; }
.event-date-badge .emonth { font-size: 11px; text-transform: uppercase; font-weight: 600; opacity: 0.85; }
.event-info h4 { font-size: 16px; margin-bottom: 4px; }
.event-info p  { font-size: 13px; color: var(--text-light); }
.event-meta    { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.event-meta span { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }

/* Admin Panel */
.admin-panel {
  background: var(--light-bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.admin-toggle {
  background: none;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 13px;
  transition: all var(--transition);
}
.admin-toggle:hover { background: var(--primary); color: var(--white); }

/* === Directory === */
.privacy-notice {
  background: #eaf4eb;
  border: 1px solid #a3d4a8;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  color: #1a3d24;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.privacy-notice i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.member-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition);
}
.member-card:hover { box-shadow: var(--shadow); }
.member-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}
.member-info h4 { font-size: 15px; margin-bottom: 4px; }
.member-info p  { font-size: 13px; color: var(--text-light); margin-bottom: 2px; }
.member-grades  { font-size: 12px; display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }

.search-bar {
  position: relative;
  margin-bottom: 24px;
}
.search-bar input {
  padding-left: 42px;
}
.search-bar i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

/* === Shop === */
.shop-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.shop-product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-img-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img-wrap .product-icon {
  font-size: 64px;
  opacity: 0.9;
}
.product-img-wrap .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}

.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 16px; margin-bottom: 6px; }
.product-body p  { font-size: 13px; color: var(--text-light); margin-bottom: 12px; flex: 1; }
.product-footer  { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.product-price   { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 20px; color: var(--primary); }

.size-select { min-width: 90px; padding: 8px 10px; font-size: 13px; }

/* Cart */
.cart-sidebar {
  position: fixed;
  top: 0; right: -380px;
  width: 360px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 20px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { color: var(--white); }
.cart-close { background: none; border: none; color: var(--white); font-size: 20px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item  { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-size: 14px; margin-bottom: 4px; }
.cart-item-info p  { font-size: 12px; color: var(--text-light); }
.cart-item-price   { font-weight: 700; color: var(--primary); }
.cart-footer { padding: 16px 20px; border-top: 1.5px solid var(--border); }
.cart-total  { font-family: 'Urbanist', sans-serif; font-size: 18px; font-weight: 700; display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1999; display: none; }
.cart-overlay.open { display: block; }

.cart-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  transition: all var(--transition);
}
.cart-fab:hover { background: var(--primary-dark); transform: translateY(-2px); }
.cart-badge {
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Volunteer === */
.volunteer-event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.volunteer-event-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.volunteer-event-header h3 { color: var(--white); font-size: 17px; }
.volunteer-event-body { padding: 20px; }
.volunteer-role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.volunteer-role:last-child { border-bottom: none; padding-bottom: 0; }
.volunteer-role-info h5  { font-size: 14px; font-weight: 700; }
.volunteer-role-info p   { font-size: 12px; color: var(--text-light); }
.slots-display { display: flex; gap: 6px; flex-wrap: wrap; }
.slot-chip {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.slot-chip.filled { background: var(--primary); border-color: var(--primary); color: var(--white); }
.slot-chip.open   { background: var(--light-bg); color: var(--text-light); }

.my-signups-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.my-signups-table th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.my-signups-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.my-signups-table tr:last-child td { border-bottom: none; }
.my-signups-table tr:nth-child(even) { background: var(--light-bg); }

/* === About === */
.board-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.board-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.board-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--secondary);
}
.board-card h4  { font-size: 16px; margin-bottom: 4px; }
.board-card .role { font-size: 13px; color: var(--primary); font-weight: 600; font-family: 'Urbanist', sans-serif; }
.board-card .email { font-size: 13px; color: var(--text-light); margin-top: 8px; }

.meeting-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.meeting-icon { font-size: 20px; color: var(--primary); flex-shrink: 0; }
.meeting-info h5 { font-size: 14px; font-weight: 600; }
.meeting-info p  { font-size: 13px; color: var(--text-light); }

.stat-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.stat-box .stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
}
.stat-box .stat-label { font-size: 14px; opacity: 0.9; margin-top: 6px; }

/* === Contact === */
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-item i { font-size: 18px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { font-size: 14px; opacity: 0.9; }
.contact-info-item strong { display: block; color: var(--white); font-size: 14px; }

.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--secondary); color: var(--primary-dark); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* === Footer === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.80);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-brand-text .school { font-size: 12px; }
.footer-brand .nav-brand-text .org   { font-size: 16px; }
.footer-brand p { font-size: 13px; opacity: 0.75; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-heading { color: var(--secondary); font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { font-size: 13px; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.65;
}

/* === Modal === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 18px; }
.modal-close { background: none; border: none; font-size: 22px; color: var(--text-light); }
.modal-body  { padding: 24px; }

/* === Tabs === */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === Responsive === */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--primary-dark); padding: 12px 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; font-size: 14px; border-radius: var(--radius); }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero {
    background:
      linear-gradient(180deg, rgba(5,27,45,0.75) 0%, rgba(5,27,45,0.6) 40%, rgba(5,27,45,0.0) 55%, rgba(5,27,45,0.0) 100%),
      url("../images/julie-dion-cover-photo-m3.jpg") center bottom / cover no-repeat;
    min-height: 100vh;
    padding: 0 !important;
  }
  #hero-container { padding-top: 40px !important; }
  .home-hero h1 { font-size: 26px; }
  .home-work-grid { grid-template-columns: 1fr !important; }
  .home-about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .home-about-section { padding: 56px 0 !important; }
  .home-about-grid img { max-height: 320px !important; }
  .section { padding: 40px 0; }
  .cal-day { min-height: 60px; }
  .cal-day .cal-event-dot { display: none; }
  .cal-day.has-event::after { content: '•'; color: var(--primary); font-size: 16px; display: block; text-align: center; }
  .cart-sidebar { width: 100%; right: -100%; }
}

@media (max-width: 480px) {
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* === Print === */
@media print { .site-header, .site-footer, .cart-fab, .cart-sidebar, .cart-overlay, .admin-panel { display: none !important; } }
