/* ==========================================================================
   Plätzchen Session 2025 - Christmas Cookie Showcase
   Mobile-first, festive design
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Variables)
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Christmas Theme */
  --color-cream: #FFF8F0;
  --color-cream-dark: #FFEEDD;
  --color-cinnamon: #8B0000;
  --color-cinnamon-light: #A52A2A;
  --color-gold: #FFD700;
  --color-gold-light: #FFE55C;
  --color-red: #8B0000;
  --color-red-dark: #6B0000;
  --color-green: #1B4D3E;
  --color-green-dark: #0F3D2E;
  --color-text: #2C1810;
  --color-text-light: #5C3A2A;
  --color-white: #FFFFFF;
  --color-shadow: rgba(27, 77, 62, 0.15);
  
  /* Typography */
  --font-display: 'Pacifico', cursive;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(27, 77, 62, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
  min-height: 100vh;
}

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

a {
  color: var(--color-red-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-red);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-green-dark);
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 100%);
  padding: var(--space-lg) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(27, 77, 62, 0.3);
}

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

.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo-icon {
  font-size: 1.75rem;
}

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

.header__link {
  color: var(--color-cream);
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.header__link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-gold-light);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
}

@media (max-width: 600px) {
  .nav-toggle {
    display: block;
  }
  
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-green-dark);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
  }
  
  .header__nav.is-open {
    display: flex;
  }
  
  .header__link {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(180deg, rgba(27, 77, 62, 0.05) 0%, transparent 100%);
  position: relative;
  z-index: 1;
}

.hero__icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  animation: bounce 2s ease-in-out infinite;
}

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

.hero__title {
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.hero__year {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Cookie Gallery Grid
   -------------------------------------------------------------------------- */
.gallery {
  padding: var(--space-xl) 0 var(--space-3xl);
  position: relative;
  z-index: 1;
}

.gallery__title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 500px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --------------------------------------------------------------------------
   Cookie Card
   -------------------------------------------------------------------------- */
.cookie-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--color-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cookie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(61, 41, 20, 0.2);
}

.cookie-card__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
  overflow: hidden;
}

.cookie-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

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

/* Mobile: Show full image without cropping */
@media (max-width: 600px) {
  .cookie-card__image {
    object-fit: contain;
  }
  
  .cookie-card__image-wrapper {
    background: var(--color-cream);
  }
}

.cookie-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
}

.cookie-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cookie-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-green-dark);
}

.cookie-card__description {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.cookie-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  align-self: flex-start;
}

.cookie-card__link:hover {
  color: var(--color-white);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Recipe Page
   -------------------------------------------------------------------------- */
.recipe-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
  overflow: hidden;
}

.recipe-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.recipe-hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
}

.recipe-hero__overlay {
  position: relative;
  width: 100%;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  z-index: 2;
}

.recipe-hero__title {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Recipe Meta */
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 2px dashed var(--color-cream-dark);
  margin-bottom: var(--space-xl);
}

.recipe-meta__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px var(--color-shadow);
}

.recipe-meta__icon {
  font-size: 1.25rem;
}

.recipe-meta__label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recipe-meta__value {
  font-weight: 700;
  color: var(--color-green-dark);
}

/* Recipe Content */
.recipe-content {
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Desktop: Two column layout */
@media (min-width: 768px) {
  .recipe-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

/* Ingredients */
.ingredients {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--color-shadow);
}

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

.ingredients__list {
  list-style: none;
}

.ingredients__item {
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--color-cream-dark);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.ingredients__item:last-child {
  border-bottom: none;
}

.ingredients__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-green-dark);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.ingredients__checkbox:checked {
  background: var(--color-green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.ingredients__text {
  flex: 1;
}

.ingredients__text.is-checked {
  text-decoration: line-through;
  color: var(--color-text-light);
}

/* Instructions */
.instructions {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--color-shadow);
}

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

.instructions__list {
  list-style: none;
  counter-reset: step;
}

.instructions__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px dashed var(--color-cream-dark);
  counter-increment: step;
}

.instructions__item:last-child {
  border-bottom: none;
}

.instructions__item::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Recipe Actions */
.recipe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-top: 2px dashed var(--color-cream-dark);
  margin-top: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-body);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
  color: var(--color-white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.5);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-green-dark);
  border: 2px solid var(--color-green-dark);
}

.btn--secondary:hover {
  background: var(--color-cream);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-cream-dark);
}

.btn--outline:hover {
  border-color: var(--color-green-dark);
  color: var(--color-green-dark);
}

/* Source Link */
.recipe-source {
  background: var(--color-cream-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.recipe-source__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.recipe-source__link {
  font-weight: 600;
  word-break: break-all;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green) 100%);
  color: var(--color-cream);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer__icon {
  font-size: 2rem;
}

.footer__text {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.footer__link {
  color: var(--color-cream);
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
.legal {
  padding: var(--space-2xl) 0;
}

.legal__content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--color-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.legal__title {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.legal h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-green-dark);
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal li {
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .header,
  .footer,
  .recipe-actions,
  .nav-toggle,
  .btn,
  .cookie-card__link {
    display: none !important;
  }
  
  .recipe-hero {
    min-height: auto;
    background: none;
  }
  
  .recipe-hero__placeholder,
  .recipe-hero__image {
    display: none;
  }
  
  .recipe-hero__overlay {
    background: none;
    padding: 0;
    margin-bottom: 1cm;
  }
  
  .recipe-hero__title {
    color: #000 !important;
    font-size: 24pt;
    text-shadow: none;
  }
  
  .recipe-meta {
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5cm;
    margin-bottom: 0.5cm;
  }
  
  .recipe-meta__item {
    box-shadow: none;
    padding: 0;
    background: none;
  }
  
  .recipe-content {
    display: block;
  }
  
  .ingredients,
  .instructions {
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 0;
    margin-bottom: 0.5cm;
    page-break-inside: avoid;
  }
  
  .ingredients {
    position: static;
  }
  
  .ingredients__checkbox {
    border: 1px solid #000;
  }
  
  .instructions__item::before {
    background: #ccc;
    color: #000;
  }
  
  .recipe-source {
    border: 1px solid #ccc;
    margin-top: 0.5cm;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }
  
  .recipe-source__link::after {
    content: "";
  }
  
  @page {
    margin: 2cm;
  }
}

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

.cookie-card {
  animation: fadeInUp 0.5s ease forwards;
}

.cookie-card:nth-child(1) { animation-delay: 0.1s; }
.cookie-card:nth-child(2) { animation-delay: 0.15s; }
.cookie-card:nth-child(3) { animation-delay: 0.2s; }
.cookie-card:nth-child(4) { animation-delay: 0.25s; }
.cookie-card:nth-child(5) { animation-delay: 0.3s; }
.cookie-card:nth-child(6) { animation-delay: 0.35s; }
.cookie-card:nth-child(7) { animation-delay: 0.4s; }
.cookie-card:nth-child(8) { animation-delay: 0.45s; }
.cookie-card:nth-child(9) { animation-delay: 0.5s; }
.cookie-card:nth-child(10) { animation-delay: 0.55s; }

/* --------------------------------------------------------------------------
   Snowflakes Animation
   -------------------------------------------------------------------------- */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  animation: snowfall linear infinite;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 10s;
  animation-delay: 0s;
}

.snowflake:nth-child(2) {
  left: 20%;
  animation-duration: 12s;
  animation-delay: 1s;
}

.snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 14s;
  animation-delay: 2s;
}

.snowflake:nth-child(4) {
  left: 40%;
  animation-duration: 11s;
  animation-delay: 0.5s;
}

.snowflake:nth-child(5) {
  left: 50%;
  animation-duration: 13s;
  animation-delay: 1.5s;
}

.snowflake:nth-child(6) {
  left: 60%;
  animation-duration: 15s;
  animation-delay: 2.5s;
}

.snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 10s;
  animation-delay: 0.3s;
}

.snowflake:nth-child(8) {
  left: 80%;
  animation-duration: 12s;
  animation-delay: 1.2s;
}

.snowflake:nth-child(9) {
  left: 90%;
  animation-duration: 14s;
  animation-delay: 2.2s;
}

.snowflake:nth-child(10) {
  left: 15%;
  animation-duration: 13s;
  animation-delay: 0.7s;
}

.snowflake:nth-child(11) {
  left: 25%;
  animation-duration: 11s;
  animation-delay: 1.7s;
}

.snowflake:nth-child(12) {
  left: 35%;
  animation-duration: 15s;
  animation-delay: 2.7s;
}

@keyframes snowfall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Santa Sleigh - Removed (distracting)
   -------------------------------------------------------------------------- */
.santa {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero Decorations
   -------------------------------------------------------------------------- */
.hero__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero__deco--1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero__deco--2 {
  top: 20%;
  right: 15%;
  animation-delay: 1.5s;
}

.hero__deco--3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.hero__deco--4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero__elves {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.elf {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

.elf--1 {
  animation-delay: 0s;
}

.elf--2 {
  animation-delay: 0.3s;
}

.elf--3 {
  animation-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   Footer Reindeer
   -------------------------------------------------------------------------- */
.footer__reindeer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  margin-top: var(--space-md);
  animation: reindeer-trot 3s ease-in-out infinite;
}

@keyframes reindeer-trot {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.footer__subtext {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Gingerbread Runner - Removed (distracting)
   -------------------------------------------------------------------------- */
.gingerbread-runner {
  display: none;
}

