/* ============================================
   $ROOM8 - Vintage 1952 Schoolhouse Aesthetic
   ============================================ */

/* CSS Variables - Color Palette */
:root {
  --manila-yellow: #F4E4C1;
  --chalkboard-green: #2D5016;
  --chalkboard-dark: #1a3009;
  --sepia: #C9A875;
  --sepia-dark: #8B7355;
  --graphite: #3C3C3C;
  --aged-paper: #FFF8E7;
  --aged-paper-dark: #EDE4D3;
  --red-ink: #8B0000;
  --faded-red: #C44536;

  /* Typography */
  --font-body: 'Courier Prime', 'Courier New', monospace;
  --font-heading: 'Special Elite', 'American Typewriter', serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;

  /* Transitions */
  --transition-smooth: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--aged-paper);
  color: var(--graphite);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Paper Texture Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 35px,
      rgba(0, 0, 0, 0.02) 35px,
      rgba(0, 0, 0, 0.02) 36px);
  pointer-events: none;
  z-index: 1;
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--chalkboard-green);
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sepia-dark);
  text-align: center;
  margin-bottom: 48px;
  font-style: italic;
}

/* ============================================
   POLAROID COMPONENT
   ============================================ */
.polaroid {
  background: var(--aged-paper);
  padding: 12px 12px 40px 12px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 0 30px rgba(0, 0, 0, 0.03);
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
  position: relative;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.polaroid-image {
  position: relative;
  overflow: hidden;
}

.polaroid-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(30%) contrast(95%) brightness(95%);
}

.polaroid-caption {
  font-family: var(--font-heading);
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--graphite);
}

.polaroid-small {
  padding: 8px 8px 30px 8px;
  max-width: 220px;
}

/* Stamp Effect */
.stamp {
  position: absolute;
  top: 20px;
  right: -10px;
  background: transparent;
  border: 3px solid var(--red-ink);
  color: var(--red-ink);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(12deg);
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.stamp-rotated {
  transform: rotate(-15deg);
}

.stamp-school {
  font-size: 0.9rem;
  font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 100px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg,
      var(--aged-paper) 0%,
      var(--manila-yellow) 50%,
      var(--aged-paper-dark) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-polaroid {
  max-width: 420px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--chalkboard-green);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--sepia-dark);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Ticker */
.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--aged-paper);
  border: 2px solid var(--sepia);
  margin-bottom: 32px;
  font-size: 0.85rem;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticker-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--sepia-dark);
  letter-spacing: 1px;
}

.ticker-value {
  font-weight: bold;
  color: var(--chalkboard-green);
  font-size: 1rem;
}

.ticker-divider {
  color: var(--sepia);
  font-weight: bold;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.btn-enroll {
  background: var(--chalkboard-green);
  color: var(--aged-paper);
  border: 3px solid var(--chalkboard-dark);
  box-shadow: 4px 4px 0 var(--graphite);
}

.btn-enroll:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--graphite);
}

.btn-hallpass {
  background: var(--manila-yellow);
  color: var(--graphite);
  border: 3px solid var(--sepia);
  box-shadow: 4px 4px 0 var(--sepia-dark);
}

.btn-hallpass:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--sepia-dark);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Doodles */
.doodle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.doodle-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.doodle-2 {
  bottom: 30%;
  right: 8%;
  animation-delay: 2s;
}

.doodle-milk {
  top: 40%;
  right: 3%;
  font-size: 1.5rem;
  animation-delay: 4s;
}

.doodle-cat {
  bottom: 10%;
  left: 5%;
  font-size: 2.5rem;
}

.doodle-heart {
  top: 20%;
  right: 10%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   TIMELINE SECTION - "The Legend"
   ============================================ */
.legend {
  padding: var(--section-padding);
  background: var(--aged-paper-dark);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline-ruler {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 8px;
  background:
    linear-gradient(var(--sepia-dark), var(--sepia-dark)) center/2px 100% no-repeat,
    repeating-linear-gradient(to bottom,
      var(--sepia-dark) 0px,
      var(--sepia-dark) 1px,
      transparent 1px,
      transparent 10px);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.4s;
}

.timeline-badge {
  position: absolute;
  left: -52px;
  width: 44px;
  height: 44px;
  background: var(--manila-yellow);
  border: 3px solid var(--sepia-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--graphite);
}

.badge-new {
  background: var(--chalkboard-green);
  color: var(--aged-paper);
  border-color: var(--chalkboard-dark);
}

.timeline-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.timeline-text {
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--graphite);
  padding-top: 10px;
}

/* ============================================
   HONOR ROLL SECTION - "The 88 Seats"
   ============================================ */
.honor-roll {
  padding: var(--section-padding);
  background: var(--chalkboard-green);
  position: relative;
  overflow: hidden;
}

.honor-roll .section-title,
.honor-roll .section-subtitle {
  color: var(--aged-paper);
}

/* Announcement Board */
.announcement-board {
  background: var(--aged-paper);
  border: 4px solid var(--sepia-dark);
  max-width: 600px;
  margin: 0 auto 48px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.board-header {
  background: var(--sepia-dark);
  color: var(--aged-paper);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-content {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.board-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--graphite);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--chalkboard-green);
  font-weight: bold;
}

.countdown {
  font-family: var(--font-body);
  letter-spacing: 2px;
}

/* Seats Grid */
.seats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* Custom Scrollbar */
.seats-grid::-webkit-scrollbar {
  width: 12px;
}

.seats-grid::-webkit-scrollbar-track {
  background: var(--chalkboard-dark);
}

.seats-grid::-webkit-scrollbar-thumb {
  background: var(--sepia);
  border: 2px solid var(--chalkboard-dark);
}

.seat-card {
  padding: 12px 8px;
  text-align: center;
  font-size: 0.7rem;
  border: 2px solid;
  transition: var(--transition-smooth);
}

.seat-card.filled {
  background: var(--manila-yellow);
  border-color: var(--sepia-dark);
  color: var(--graphite);
}

.seat-card.empty {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

.seat-card:hover {
  transform: scale(1.05);
}

.seat-wallet {
  font-family: var(--font-body);
  font-weight: bold;
  margin-bottom: 4px;
  word-break: break-all;
}

.seat-id {
  font-size: 0.65rem;
  opacity: 0.8;
}

.seat-locked {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

/* ============================================
   SYLLABUS SECTION - "Course Outline"
   ============================================ */
.syllabus {
  padding: var(--section-padding);
  background: var(--aged-paper);
}

.legal-pad {
  max-width: 700px;
  margin: 0 auto;
  background: var(--manila-yellow);
  padding: 40px;
  position: relative;
  box-shadow:
    8px 8px 0 var(--sepia-dark),
    inset 0 0 60px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--faded-red);
}

/* Legal pad lines */
.legal-pad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(transparent,
      transparent 27px,
      #B8D4E3 27px,
      #B8D4E3 28px);
  pointer-events: none;
  opacity: 0.5;
}

.legal-pad-header {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--sepia);
}

.pad-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--chalkboard-green);
  margin-bottom: 8px;
}

.pad-date {
  font-style: italic;
  color: var(--sepia-dark);
  font-size: 0.9rem;
}

.pad-content {
  position: relative;
  z-index: 1;
}

/* Coffee Stain */
.coffee-stain {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      transparent 40%,
      rgba(139, 90, 43, 0.15) 50%,
      rgba(139, 90, 43, 0.1) 60%,
      transparent 70%);
  transform: rotate(-15deg);
}

/* Roadmap Items */
.roadmap-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.checkbox {
  font-size: 1.4rem;
  color: var(--chalkboard-green);
  flex-shrink: 0;
  width: 30px;
}

.checkbox.checked {
  color: var(--chalkboard-green);
}

.period-badge {
  background: var(--chalkboard-green);
  color: var(--aged-paper);
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.roadmap-text {
  flex: 1;
}

.roadmap-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--graphite);
  margin-bottom: 4px;
}

.roadmap-text p {
  font-size: 0.95rem;
  color: var(--sepia-dark);
}

/* Margin Doodles */
.margin-doodle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  z-index: 2;
}

.doodle-fish {
  bottom: 60px;
  left: -40px;
  transform: rotate(-10deg);
}

.doodle-paw-small {
  top: 100px;
  right: -30px;
}

.doodle-milk-small {
  bottom: 120px;
  right: -25px;
  font-size: 1.2rem;
}

/* ============================================
   FACULTY SECTION - "Board of Directors"
   ============================================ */
.faculty {
  padding: var(--section-padding);
  background: var(--aged-paper-dark);
}

/* Multisig Card */
.multisig-card {
  max-width: 600px;
  margin: 0 auto 48px;
  background: var(--aged-paper);
  border: 3px solid var(--graphite);
  box-shadow: 6px 6px 0 var(--sepia-dark);
}

.multisig-header {
  background: var(--graphite);
  color: var(--aged-paper);
  padding: 12px 20px;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.multisig-address {
  padding: 20px;
  text-align: center;
}

.multisig-address code {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--chalkboard-green);
  margin-bottom: 12px;
  word-break: break-all;
}

.solscan-link {
  color: var(--sepia-dark);
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.solscan-link:hover {
  color: var(--chalkboard-green);
}

/* Signers Grid */
.signers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.signer-card {
  text-align: center;
  max-width: 150px;
}

.yearbook-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  border: 4px solid var(--aged-paper);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.yearbook-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) grayscale(20%);
}

.signer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--graphite);
  margin-bottom: 4px;
}

.signer-role {
  font-size: 0.8rem;
  color: var(--sepia-dark);
  margin-bottom: 6px;
}

.signer-twitter {
  font-size: 0.8rem;
  color: var(--chalkboard-green);
  text-decoration: none;
}

.signer-twitter:hover {
  text-decoration: underline;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--aged-paper);
  border: 2px solid var(--sepia);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.badge-icon {
  font-size: 1.1rem;
}

/* ============================================
   POSTCARD SECTION
   ============================================ */
.postcard-section {
  padding: var(--section-padding);
  background: var(--manila-yellow);
  position: relative;
}

.postcard-creator {
  max-width: 700px;
  margin: 0 auto;
}

.postcard-input-area {
  margin-bottom: 32px;
}

.postcard-paper {
  background: var(--aged-paper);
  padding: 24px;
  border: 2px solid var(--sepia);
  box-shadow: 4px 4px 0 var(--sepia-dark);
  margin-bottom: 20px;
  position: relative;
}

.postcard-lines {
  background: repeating-linear-gradient(transparent,
      transparent 27px,
      #B8D4E3 27px,
      #B8D4E3 28px);
  min-height: 100px;
}

.postcard-paper textarea {
  width: 100%;
  min-height: 100px;
  padding: 8px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--graphite);
  resize: vertical;
  line-height: 28px;
}

.postcard-paper textarea:focus {
  outline: none;
}

.postcard-paper textarea::placeholder {
  color: var(--sepia);
  font-style: italic;
}

.char-counter {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.8rem;
  color: var(--sepia-dark);
}

/* Stamp Button */
.btn-stamp {
  background: var(--aged-paper);
  border: 3px dashed var(--red-ink);
  color: var(--red-ink);
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-stamp:hover {
  background: var(--red-ink);
  color: var(--aged-paper);
  border-style: solid;
}

/* Postcard Preview */
.postcard-preview {
  text-align: center;
}

#postcard-canvas {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--sepia-dark);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.postcard-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-download,
.btn-share {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border: 2px solid var(--graphite);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-download {
  background: var(--aged-paper);
  color: var(--graphite);
}

.btn-share {
  background: var(--chalkboard-green);
  color: var(--aged-paper);
  border-color: var(--chalkboard-dark);
}

.btn-download:hover,
.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  background: var(--graphite);
  color: var(--aged-paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.paw-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  opacity: 0.03;
  pointer-events: none;
}

.paw-background::before {
  content: '🐾';
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-link {
  color: var(--aged-paper);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-bottom: 16px;
}

.footer-ca {
  font-family: var(--font-body);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-ca code {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-polaroid {
    max-width: 320px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .ticker {
    justify-content: center;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-badge {
    left: -42px;
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }

  .timeline-content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-polaroid {
    max-width: 280px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .ticker {
    flex-direction: column;
    align-items: stretch;
  }

  .ticker-divider {
    display: none;
  }

  .ticker-item {
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid var(--sepia);
    padding-bottom: 8px;
  }

  .ticker-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .legal-pad {
    padding: 24px 20px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .margin-doodle {
    display: none;
  }

  .seats-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 6px;
  }

  .seat-card {
    padding: 8px 4px;
    font-size: 0.6rem;
  }

  .signers-grid {
    gap: 24px;
  }

  .signer-card {
    max-width: 120px;
  }

  .yearbook-photo {
    width: 80px;
    height: 80px;
  }

  .footer-links {
    gap: 20px;
  }

  .doodle {
    display: none;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.typewriter-text {
  overflow: hidden;
  border-right: 3px solid var(--graphite);
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gentle hover effect for cards */
.seat-card:hover,
.signer-card:hover {
  transform: translateY(-3px);
}

/* Print Styles */
@media print {

  .grain-overlay,
  .doodle {
    display: none !important;
  }

  body {
    background: white;
  }
}