/* ============================================
   CARNIVOROUS PLANTS - FRANKLIN PARK CONSERVATORY
   Brand Standards Applied
   ============================================ */

/* ---------- Brand Color Variables ---------- */
:root {
  /* Primary Palette */
  --brown-dark: #572700;
  --yellow-green: #D5D10E;
  --orange: #F8971D;
  --olive: #B8B308;

  /* Secondary Palette */
  --light-blue: #A1D2DD;
  --gray: #B8B1AB;
  --brown-mid: #935D3C;
  --tan: #DBD095;
  --orange-deep: #DA6126;
  --yellow-green-light: #CFDD3A;
  --gold: #F99F1C;
  --forest-green: #77833C;
  --teal: #006682;
  --olive-gray: #80866E;
  --dark-red: #9C2F31;
  --khaki: #C0B88D;

  /* Functional Colors */
  --bg-cream: #FDF8F0;
  --bg-card: #FFFFFF;
  --text-primary: #3A2000;
  --text-body: #4A3520;
  --text-light: #FDF8F0;

  /* Typography */
  --font-primary: 'Noto Serif', Georgia, serif;
  --font-secondary: Arial, 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  color: var(--brown-dark);
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.25rem; margin-bottom: var(--space-xs); }

p {
  margin-bottom: var(--space-sm);
  font-family: var(--font-secondary);
}

ul {
  font-family: var(--font-secondary);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

em { font-style: italic; }
strong { font-weight: 700; }

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ---------- Screens ---------- */
.screen {
  display: none;
  min-height: 100vh;
  animation: fadeIn 0.35s ease;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--brown-dark);
  color: var(--text-light);
  padding: var(--space-sm) var(--space-md);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(87, 39, 0, 0.2);
}

.site-header--dark {
  background: #2E1500;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
}

.header-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.header-subtitle {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  opacity: 0.85;
  margin-left: auto;
}

.back-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.back-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* ---------- Hero / Home ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #2E5D1E 0%, #1A4010 40%, #0D2B08 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(213,209,14,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(161,210,221,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(248,151,29,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='rgba(119,131,60,0.15)'/%3E%3Cpath d='M10 35 Q15 45 10 55 Q5 45 10 35' fill='rgba(119,131,60,0.1)'/%3E%3Cpath d='M50 30 Q55 40 50 50 Q45 40 50 30' fill='rgba(119,131,60,0.08)'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  z-index: 1;
}

.hero-content h1 {
  color: var(--yellow-green);
  font-size: 3.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.hero-tagline {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

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

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

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-secondary {
  background: var(--brown-mid);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--brown-dark);
}

.btn-accent {
  background: var(--forest-green);
  color: #fff;
}

.btn-accent:hover {
  background: var(--olive-gray);
}

/* ---------- Content Card ---------- */
.content-card {
  max-width: 900px;
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(87,39,0,0.08);
}

/* ---------- Tutorial ---------- */
.tutorial-steps {
  margin: var(--space-md) 0 var(--space-lg);
}

.tutorial-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  border-radius: 8px;
  background: var(--bg-cream);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-secondary);
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  color: var(--brown-dark);
  font-family: var(--font-primary);
  margin-bottom: 0.25rem;
}

.step-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------- Teacher's Guide Cards ---------- */
.guide-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.guide-card {
  background: var(--bg-cream);
  border: 2px solid var(--tan);
  border-radius: 10px;
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
}

.guide-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(87,39,0,0.1);
}

.guide-icon {
  font-size: 2rem;
}

.guide-label {
  font-weight: 700;
  color: var(--brown-dark);
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.guide-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.8;
}

/* ---------- Resource Tables ---------- */
.resource-table {
  border: 1px solid var(--tan);
  border-radius: 8px;
  overflow: hidden;
}

.resource-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  padding: 0.75rem 1rem;
  gap: var(--space-sm);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(219,208,149,0.5);
  align-items: center;
}

.resource-row:last-child {
  border-bottom: none;
}

.resource-row.resource-header {
  background: var(--brown-dark);
  color: var(--text-light);
  font-weight: 700;
  font-family: var(--font-primary);
}

.resource-row:not(.resource-header):nth-child(even) {
  background: var(--bg-cream);
}

/* Two-column variant for videos */
.resource-table .resource-row:has(span:nth-child(2):last-child) {
  grid-template-columns: 1.5fr 2fr;
}

/* Override for video rows */
#additional-resources .resource-table:last-of-type .resource-row {
  grid-template-columns: 1.5fr 2fr;
}

/* ---------- Tips & Tricks ---------- */
.tips-list {
  font-size: 1.05rem;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.tips-list li {
  margin-bottom: 0.6rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.standard-card {
  background: var(--bg-cream);
  border-left: 4px solid var(--forest-green);
  padding: var(--space-md);
  border-radius: 0 8px 8px 0;
}

.standard-card h3 {
  color: var(--forest-green);
}

/* ---------- Prompts & Projects ---------- */
.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.prompt-card {
  background: var(--bg-cream);
  border: 2px solid var(--tan);
  border-radius: 10px;
  padding: var(--space-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
}

.prompt-card.project {
  border-color: var(--forest-green);
  background: #F5F8EE;
}

.prompt-card.project h3 {
  color: var(--forest-green);
  font-family: var(--font-primary);
}

.prompt-card p:last-child {
  margin-bottom: 0;
}

/* ---------- The Bog Scene ---------- */
.bog-scene {
  min-height: calc(100vh - 56px);
  background: linear-gradient(180deg, #87CEEB 0%, #B8D8B0 20%, #6B8E5A 40%, #4A7040 60%, #3B5B30 80%, #2A4020 100%);
  position: relative;
  display: flex;
  flex-direction: column;
}

.bog-intro {
  text-align: center;
  padding: var(--space-lg) var(--space-md) var(--space-sm);
  color: #fff;
}

.bog-intro h2 {
  color: var(--yellow-green);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bog-intro p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.bog-landscape {
  flex: 1;
  position: relative;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.bog-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(30,80,60,0.5) 0%, rgba(20,60,50,0.8) 100%);
  border-top: 2px solid rgba(161,210,221,0.3);
}

.bog-plants {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* ---------- Bog Plant Buttons ---------- */
.bog-plant {
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  backdrop-filter: blur(4px);
  min-width: 160px;
}

.bog-plant:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--yellow-green);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.bog-plant.visited {
  border-color: var(--yellow-green);
  background: rgba(213,209,14,0.1);
}

.plant-label {
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ---------- Stylized Plant Visuals ---------- */
.plant-visual {
  position: relative;
  width: 80px;
  height: 100px;
}

/* Bladderwort */
.bladderwort-stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 70px;
  background: #5D8A3C;
  transform: translateX(-50%);
}

.bladderwort-flower {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 20px;
  height: 16px;
  background: #E8D44D;
  border-radius: 50% 50% 40% 40%;
  transform: translateX(-50%);
}

.bladderwort-flower--2 {
  top: 15px;
  left: 30%;
  width: 16px;
  height: 13px;
  background: #D5C83A;
}

.bladderwort-bladder {
  position: absolute;
  bottom: 10px;
  left: 20%;
  width: 12px;
  height: 10px;
  background: #7BA35D;
  border-radius: 50%;
}

.bladderwort-bladder--2 {
  left: 55%;
  bottom: 18px;
}

.bladderwort-bladder--3 {
  left: 40%;
  bottom: 5px;
  width: 10px;
  height: 8px;
}

/* Pitcher Plant */
.pitcher-tube {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 22px;
  height: 80px;
  background: linear-gradient(90deg, #8B4D30, #A65D3C, #8B4D30);
  border-radius: 5px 5px 8px 8px;
}

.pitcher-tube--2 {
  left: 55%;
  height: 65px;
  width: 18px;
}

.pitcher-hood {
  position: absolute;
  top: 8px;
  left: 22%;
  width: 36px;
  height: 18px;
  background: #6B8E23;
  border-radius: 50% 50% 20% 20%;
  border-bottom: 2px solid #8B4D30;
}

.pitcher-hood--2 {
  top: 25px;
  left: 48%;
  width: 30px;
  height: 15px;
}

/* Sundew */
.sundew-leaf {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 50px;
  height: 8px;
  background: #6B8E23;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-10deg);
  transform-origin: center;
}

.sundew-leaf--2 {
  bottom: 30px;
  transform: translateX(-50%) rotate(15deg);
  width: 45px;
}

.sundew-leaf--3 {
  bottom: 10px;
  transform: translateX(-50%) rotate(-25deg);
  width: 40px;
}

.sundew-droplet {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(255,100,100,0.9), rgba(200,50,50,0.7));
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255,150,150,0.5);
  animation: glisten 2s ease-in-out infinite;
}

.sundew-droplet { top: 40px; left: 15px; animation-delay: 0s; }
.sundew-droplet--2 { top: 35px; left: 55px; animation-delay: 0.4s; }
.sundew-droplet--3 { top: 50px; left: 30px; animation-delay: 0.8s; }
.sundew-droplet--4 { top: 45px; left: 65px; animation-delay: 1.2s; }
.sundew-droplet--5 { top: 55px; left: 45px; animation-delay: 1.6s; }

@keyframes glisten {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Venus Flytrap */
.venus-stem {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 40px;
  background: #5D8A3C;
  transform: translateX(-50%);
}

.venus-trap {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 30px;
  height: 20px;
  transform: translateX(-50%);
}

.venus-trap::before,
.venus-trap::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 14px;
  background: #4A8B2C;
  left: 50%;
  transform: translateX(-50%);
}

.venus-trap::before {
  top: 0;
  border-radius: 50% 50% 0 0;
  border-bottom: 2px solid #C44040;
}

.venus-trap::after {
  bottom: 0;
  border-radius: 0 0 50% 50%;
  border-top: 2px solid #C44040;
}

.venus-trap--2 {
  top: 20px;
  left: 30%;
  transform: translateX(-50%) rotate(-20deg);
}

.venus-trap--3 {
  top: 25px;
  left: 70%;
  transform: translateX(-50%) rotate(15deg);
}

/* ---------- Frog in Bog ---------- */
.bog-frog {
  position: absolute;
  bottom: 8%;
  right: 12%;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s;
  animation: frogBob 3s ease-in-out infinite;
}

.bog-frog:hover {
  transform: scale(1.15);
}

.frog-body {
  width: 40px;
  height: 28px;
  background: #4A8B2C;
  border-radius: 50%;
}

.frog-eye {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: -4px;
}

.frog-eye::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #222;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

.frog-eye--left { left: 6px; }
.frog-eye--right { right: 6px; }

@keyframes frogBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---------- Bog Progress ---------- */
.bog-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
}

.progress-label {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

.progress-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  transition: all 0.3s;
}

.progress-dot.discovered {
  background: var(--yellow-green);
  border-color: var(--yellow-green);
  box-shadow: 0 0 8px rgba(213,209,14,0.5);
}

/* ---------- Plant Detail Screens ---------- */
.plant-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) var(--space-xl);
}

.plant-hero {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: 12px;
  margin-bottom: var(--space-lg);
  color: #fff;
}

.plant-hero h2 {
  color: #fff;
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.plant-latin {
  font-size: 1.1rem;
  opacity: 0.9;
  font-family: var(--font-primary);
}

.plant-hero--bladderwort {
  background: linear-gradient(135deg, #5D8A3C, #B8B308, #D5D10E);
}

.plant-hero--pitcher {
  background: linear-gradient(135deg, #8B4D30, #935D3C, #DA6126);
}

.plant-hero--sundew {
  background: linear-gradient(135deg, #9C2F31, #DA6126, #F99F1C);
}

.plant-hero--venus {
  background: linear-gradient(135deg, #006682, #4A8B2C, #77833C);
}

/* ---------- Fact Cards ---------- */
.plant-facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fact-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: var(--space-md);
  box-shadow: 0 2px 12px rgba(87,39,0,0.06);
  border-left: 4px solid var(--forest-green);
  transition: opacity 0.4s, transform 0.4s;
}

.fact-card h3 {
  color: var(--forest-green);
  font-family: var(--font-primary);
}

.hidden-fact {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.hidden-fact.revealed {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.reveal-btn {
  margin-top: var(--space-md);
}

.reveal-btn.hidden {
  display: none;
}

/* ---------- End Screen ---------- */
.end-card {
  text-align: center;
}

.end-frog {
  margin-bottom: var(--space-md);
}

.frog-big {
  position: relative;
  width: 100px;
  height: 70px;
  margin: 0 auto;
}

.frog-big-body {
  width: 100px;
  height: 70px;
  background: #4A8B2C;
  border-radius: 50%;
}

.frog-big-eye {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  top: -8px;
}

.frog-big-eye::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #222;
  border-radius: 50%;
  top: 6px;
  left: 6px;
}

.frog-big-eye--left { left: 16px; }
.frog-big-eye--right { right: 16px; }

.frog-big-mouth {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 30px;
  height: 4px;
  background: #3A7020;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.end-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .hero-content h1 { font-size: 2.5rem; }
  h2 { font-size: 1.5rem; }

  .content-card {
    margin: var(--space-sm);
    padding: var(--space-md);
  }

  .bog-plants {
    gap: var(--space-sm);
  }

  .bog-plant {
    min-width: 130px;
    padding: var(--space-sm) var(--space-md);
  }

  .resource-row {
    grid-template-columns: 1fr !important;
    gap: 0.25rem;
  }

  .resource-row.resource-header {
    display: none;
  }

  .resource-row span::before {
    font-weight: 700;
    color: var(--brown-dark);
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }

  .bog-plant {
    min-width: 110px;
    padding: var(--space-xs) var(--space-sm);
  }

  .plant-visual {
    width: 60px;
    height: 75px;
    transform: scale(0.85);
  }

  .guide-links {
    grid-template-columns: 1fr;
  }
}

/* Offset for fixed footer */
.screen {
  padding-bottom: 50px;
}
