/* ==========================================================================
   Dresden Netzwerk – Mainpage Design System
   Clean Yellow & Black Theme (Pures Gelb #ffd400 wie Dresden Regelwerk)
   ========================================================================== */

:root {
  /* Dresden Gelb Color Palette */
  --yellow: #ffd400;
  --yellow-dim: #c7a500;
  --yellow-soft: rgba(255, 212, 0, 0.12);
  --yellow-glow: rgba(255, 212, 0, 0.35);
  
  --black: #0a0a0a;
  --dark: #121212;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --grey: #a0a0a0;
  --light: #e8e8e8;
  --white: #ffffff;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 212, 0, 0.3);
  --glass: rgba(18, 18, 18, 0.7);
  --glass-hover: rgba(24, 24, 24, 0.85);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 50px rgba(255, 212, 0, 0.12);
  
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  color-scheme: dark;
}

body {
  min-width: 320px;
  color: var(--light);
  background: var(--black);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 212, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 30%, rgba(255, 212, 0, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255, 212, 0, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #101010 40%, #060606 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Background Grid Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 95%);
}

h1, h2, h3, h4, .brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

::selection {
  color: var(--black);
  background: var(--yellow);
}

/* Ambient Lights */
.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
  filter: blur(120px);
}

.ambient-one {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: -5%;
  right: -15%;
  opacity: 0.07;
  animation: ambientFloat 20s ease-in-out infinite;
}

.ambient-two {
  width: 400px;
  height: 400px;
  background: #8b6e00;
  bottom: 0;
  left: -15%;
  opacity: 0.06;
  animation: ambientFloat 25s ease-in-out infinite reverse;
}

.ambient-three {
  width: 350px;
  height: 350px;
  background: var(--yellow);
  top: 45%;
  left: 35%;
  opacity: 0.04;
  animation: ambientFloat 18s ease-in-out infinite;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Container */
.container {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

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

/* Glassmorphism Cards */
.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass:hover {
  border-color: var(--border-hover);
}

/* Skip Link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 12px 16px;
  color: #111;
  background: var(--yellow);
  border-radius: 10px;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 20px;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  border-color: var(--border);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Brand Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.88;
}

.brand strong {
  color: var(--yellow);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(255, 212, 0, 0.3));
  transition: filter 0.3s var(--ease);
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 0 16px rgba(255, 212, 0, 0.5));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  color: #999;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: all 0.25s var(--ease);
  position: relative;
}

.nav-links > a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  transform: translateX(-50%);
}

.nav-links > a:not(.button):hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links > a:not(.button):hover::after,
.nav-links > a.active::after {
  width: 60%;
}

.nav-links > a.active {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  place-items: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

.menu-toggle span + span {
  margin-top: 5px;
}

/* Gelbe Dresden Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
}

.button-primary {
  color: #111;
  background: var(--yellow);
  box-shadow: 0 8px 30px rgba(255, 212, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(255, 212, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.section-heading h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 800;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--grey);
  max-width: 600px;
  font-size: 15px;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  padding-top: 160px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 40px rgba(255, 212, 0, 0.35));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(255, 212, 0, 0.35)); }
  50% { transform: translateY(-12px); filter: drop-shadow(0 0 60px rgba(255, 212, 0, 0.55)); }
}



.icon-crown {
  color: var(--yellow);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--yellow);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--yellow); }
  50% { opacity: 0.5; box-shadow: 0 0 6px var(--yellow); }
}

.hero h1 {
  margin: 28px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: -4px;
  color: var(--white);
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 0 80px rgba(255, 212, 0, 0.25);
}

.hero-subtitle {
  margin: 24px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--light);
}

.hero-subtitle span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}



/* ── PROJEKTE SECTION (SAUBERE LOGOS OHNE BUGS) ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.35s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

/* Logo Container: Perfekt ausgefüllt ohne freie Fläche */
.project-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #0d0d0d;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Perfekt randlos ausgefüllt ohne freie Fläche! */
  object-position: center;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.project-card:hover .project-media img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 35px rgba(255, 212, 0, 0.55));
}

.project-badge-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 212, 0, 0.35);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  z-index: 2;
}

.project-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.project-description {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.project-owners-box {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: rgba(255, 212, 0, 0.04);
  border: 1px solid rgba(255, 212, 0, 0.16);
  border-radius: var(--radius-sm);
}

.project-owners-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.owners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.owner-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.1);
  color: var(--yellow);
  border: 1px solid rgba(255, 212, 0, 0.28);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Management Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  box-shadow: 0 0 15px var(--yellow);
}

.team-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.08);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--yellow);
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.25);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-name {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.team-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.team-project-pill {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 212, 0, 0.06);
  border-radius: 999px;
  color: var(--grey);
  border: 1px solid rgba(255, 212, 0, 0.15);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid rgba(255, 212, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
}

/* FAQ Accordion */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item.active {
  border-color: rgba(255, 212, 0, 0.25);
  background: rgba(255, 212, 0, 0.03);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 1.2rem;
  color: var(--yellow);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

/* Support CTA Banner */
.support-card {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(255, 212, 0, 0.06) 100%);
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 212, 0, 0.08);
}

.support-card h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.support-card p {
  color: var(--grey);
  max-width: 550px;
  font-size: 15px;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--grey);
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer p {
  color: #666;
  font-size: 13px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 6px 25px rgba(255, 212, 0, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #ffe033;
}

/* Scroll Animations - 100% Sicher mit Fallback */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

html.js .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .projects-grid, .team-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero-stats div + div {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    width: 100%;
  }

  .projects-grid, .team-grid, .features-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 32px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: grid;
  }
}
