﻿:root {
  --bg: #070814;
  --bg-soft: #10152c;
  --surface: #111933;
  --surface-2: #0d1328;
  --text: #f5f7ff;
  --muted: #a8b0d8;
  --neon-blue: #3fc6ff;
  --neon-violet: #a259ff;
  --stroke: rgba(165, 89, 255, 0.25);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(162, 89, 255, 0.2), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(63, 198, 255, 0.2), transparent 35%),
    linear-gradient(180deg, #070814 0%, #090b19 40%, #070814 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-a {
  background: var(--neon-violet);
  top: -100px;
  left: -80px;
}

.bg-glow-b {
  background: var(--neon-blue);
  bottom: -120px;
  right: -60px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 7px 12px;
  cursor: pointer;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  padding: 90px 20px 70px;
  border: 1px solid rgba(63, 198, 255, 0.2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 25, 51, 0.72), rgba(13, 19, 40, 0.72));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.hero-home {
  background:
    linear-gradient(160deg, rgba(7, 10, 25, 0.78), rgba(6, 9, 22, 0.82)),
    url("../media/placeholders/photo-1492684223066-81342ee5ff30.jfif") center/cover no-repeat;
}

.kicker {
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin: 0 0 16px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
}

.brand-signature {
  margin: 14px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #dce9ff;
}

.brand-location {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--neon-blue);
  letter-spacing: 0.04em;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #060815;
  background: linear-gradient(120deg, var(--neon-blue), #86f0ff);
  box-shadow: 0 0 22px rgba(63, 198, 255, 0.4);
}

.btn-outline {
  color: var(--text);
  border: 1px solid rgba(162, 89, 255, 0.45);
  background: rgba(162, 89, 255, 0.12);
  box-shadow: 0 0 20px rgba(162, 89, 255, 0.18);
}

.btn-small {
  margin-top: 14px;
  color: var(--text);
  background: linear-gradient(120deg, rgba(162, 89, 255, 0.9), rgba(63, 198, 255, 0.85));
}

.section {
  margin-top: 54px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.event-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  background: linear-gradient(160deg, rgba(17, 25, 51, 0.85), rgba(10, 14, 31, 0.85));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
}

.event-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.event-card p {
  color: var(--muted);
  margin: 6px 0;
}

.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  min-height: 170px;
  border-radius: 16px;
  border: 1px solid rgba(63, 198, 255, 0.25);
  background:
    linear-gradient(135deg, rgba(162, 89, 255, 0.25), rgba(63, 198, 255, 0.16)),
    linear-gradient(180deg, #121935, #090d20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dbe9ff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.gallery-photo {
  padding: 0;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-photo:hover img {
  transform: scale(1.03);
}

.gallery-preview-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.about {
  background: rgba(13, 19, 40, 0.75);
  border: 1px solid rgba(165, 89, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
}

.about h2 {
  margin-top: 0;
}

.about p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 840px;
}

.site-footer {
  max-width: 1200px;
  margin: 42px auto 0;
  padding: 16px 20px 30px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 960px) {
  .event-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    right: 20px;
    top: 70px;
    width: min(230px, calc(100% - 40px));
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(162, 89, 255, 0.3);
    background: rgba(7, 8, 20, 0.95);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding: 68px 16px 52px;
  }

  .event-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.events-page .section:first-child {
  margin-top: 20px;
}

.events-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.event-card-detailed {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.event-card-detailed:hover {
  transform: translateY(-6px);
  border-color: rgba(63, 198, 255, 0.55);
  box-shadow: 0 16px 36px rgba(4, 8, 24, 0.5), 0 0 24px rgba(162, 89, 255, 0.2);
}

.event-media {
  min-height: 155px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(63, 198, 255, 0.3);
  background:
    linear-gradient(140deg, rgba(63, 198, 255, 0.2), rgba(162, 89, 255, 0.22)),
    linear-gradient(180deg, rgba(13, 19, 40, 0.75), rgba(9, 13, 32, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8e6ff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  overflow: hidden;
}

.event-media img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.event-card:hover .event-media img {
  transform: scale(1.04);
}

.is-past .event-media {
  border-color: rgba(168, 176, 216, 0.28);
  background:
    linear-gradient(140deg, rgba(168, 176, 216, 0.15), rgba(83, 92, 140, 0.2)),
    linear-gradient(180deg, rgba(13, 19, 40, 0.75), rgba(9, 13, 32, 0.95));
}

.booking-page .section:first-child {
  margin-top: 20px;
}

.booking-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.booking-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.steps-panel,
.form-panel {
  background: linear-gradient(160deg, rgba(17, 25, 51, 0.85), rgba(10, 14, 31, 0.85));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
}

.steps-panel h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.steps-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.steps-list li {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
}

.steps-list span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #051021;
  background: linear-gradient(120deg, var(--neon-blue), #90e6ff);
  flex-shrink: 0;
}

.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form label {
  font-weight: 700;
}

.booking-form select,
.booking-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.35);
  background: rgba(9, 13, 32, 0.95);
  color: var(--text);
  padding: 14px 12px;
  font-size: 1rem;
}

.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(63, 198, 255, 0.2);
}

.booking-form input[readonly] {
  background: rgba(16, 22, 44, 0.95);
  color: #d7e9ff;
  cursor: not-allowed;
}

.field-hint {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.btn-large {
  margin-top: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.booking-success {
  margin-top: 16px;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(63, 198, 255, 0.35);
  background: rgba(63, 198, 255, 0.12);
  color: #dbf4ff;
  display: none;
}

.booking-success h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.booking-success p {
  margin: 0;
  color: #d8ebff;
}

.booking-success.visible {
  display: block;
}

@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

.dashboard-page .section:first-child {
  margin-top: 20px;
}

.dashboard-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.dashboard-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-feedback {
  margin: 12px 0 0;
  min-height: 24px;
  color: #b7c6ff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dashboard-feedback.visible {
  opacity: 1;
}

.dashboard-admin-forms {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.admin-form-card {
  display: none;
}

.admin-form-card.open {
  display: block;
}

.admin-form-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.admin-form {
  display: grid;
  gap: 9px;
}

.admin-form label {
  font-weight: 700;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.35);
  background: rgba(9, 13, 32, 0.95);
  color: var(--text);
  padding: 12px;
  font-size: 0.98rem;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(63, 198, 255, 0.2);
}

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

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

.dashboard-card {
  background: linear-gradient(160deg, rgba(17, 25, 51, 0.86), rgba(10, 14, 31, 0.9));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
}

.stat-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 198, 255, 0.52);
  box-shadow: 0 14px 34px rgba(4, 8, 24, 0.42);
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-value {
  margin: 8px 0 6px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
}

.stat-trend {
  margin: 0;
  color: #c9d5ff;
  font-size: 0.9rem;
}

.stat-trend.up {
  color: #89f6d9;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.planning-card h2,
.modules-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.planning-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.planning-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(162, 89, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
}

.planning-name {
  margin: 0;
  font-weight: 700;
}

.planning-date {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.planning-badge {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  border: 1px solid rgba(63, 198, 255, 0.34);
  background: rgba(63, 198, 255, 0.12);
  color: #d8efff;
  white-space: nowrap;
}

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

.module-item {
  border: 1px solid rgba(165, 89, 255, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: rgba(11, 16, 35, 0.65);
  display: grid;
  gap: 8px;
}

.module-item h3 {
  margin: 0;
  font-size: 1rem;
}

.module-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn-module {
  margin-top: 6px;
  width: 100%;
  text-align: center;
}

.dashboard-gallery-grid {
  margin-top: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-events-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.manage-card {
  border: 1px solid rgba(162, 89, 255, 0.25);
  border-radius: 14px;
  background: rgba(10, 14, 31, 0.78);
  padding: 12px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
}

.manage-card-media {
  width: 120px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(63, 198, 255, 0.25);
}

.manage-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.manage-card-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.manage-card-body p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.manage-card-actions {
  display: grid;
  gap: 8px;
}

.btn-small-action {
  padding: 8px 10px;
  font-size: 0.86rem;
  margin: 0;
}

.btn-small-action.danger {
  border-color: rgba(255, 111, 145, 0.5);
  background: rgba(255, 111, 145, 0.14);
}

.manage-photo {
  position: relative;
}

.manage-photo figcaption {
  position: absolute;
  left: 10px;
  bottom: 46px;
  right: 10px;
  margin: 0;
  font-size: 0.8rem;
  color: #eff7ff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.manage-photo-actions {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 12, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.confirm-modal.open {
  display: flex;
}

.confirm-box {
  width: min(420px, 100%);
  background: linear-gradient(160deg, rgba(17, 25, 51, 0.96), rgba(10, 14, 31, 0.96));
  border: 1px solid rgba(162, 89, 255, 0.35);
  border-radius: 16px;
  padding: 18px;
}

.confirm-box h3 {
  margin: 0 0 8px;
}

.confirm-box p {
  margin: 0;
  color: var(--muted);
}

.confirm-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-page .section:first-child {
  margin-top: 20px;
}

.gallery-page h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.gallery-grid-page .gallery-item {
  padding: 0;
  min-height: 240px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gallery-grid-page .gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 198, 255, 0.52);
  box-shadow: 0 14px 34px rgba(4, 8, 24, 0.45);
}

.gallery-grid-page .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-grid-page .gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dashboard-stats,
  .module-grid,
  .dashboard-gallery-grid {
    grid-template-columns: 1fr;
  }

  .admin-form-actions,
  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .manage-card {
    grid-template-columns: 1fr;
  }

  .manage-card-media {
    width: 100%;
    height: 150px;
  }

  .dashboard-actions .btn {
    width: 100%;
    text-align: center;
  }

  .planning-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  main {
    padding: 18px 16px;
  }

  .section {
    margin-top: 42px;
  }

  .hero {
    padding: 64px 18px 50px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.7rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .event-card,
  .dashboard-card,
  .steps-panel,
  .form-panel {
    padding: 16px;
  }

  .gallery-grid-page .gallery-item {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    padding: 10px 14px;
    gap: 10px;
    background: rgba(7, 8, 20, 0.78);
    backdrop-filter: blur(10px);
    z-index: 20;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  main {
    padding: 14px;
  }

  .site-footer {
    padding: 14px 14px 24px;
  }

  .main-nav {
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    padding: 10px;
    gap: 6px;
  }

  .main-nav a {
    width: 100%;
    border-radius: 10px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero {
    padding: 52px 14px 42px;
    border-radius: 20px;
  }

  .kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .brand-signature {
    margin-top: 10px;
    font-size: 1rem;
  }

  .brand-location {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    margin-top: 34px;
  }

  .section-head h1,
  .section-head h2 {
    font-size: 1.55rem;
  }

  .section-head p {
    font-size: 0.95rem;
  }

  .event-card {
    padding: 15px;
  }

  .event-media {
    min-height: 165px;
  }

  .gallery-item {
    min-height: 200px;
  }

  .gallery-grid-page .gallery-item {
    min-height: 230px;
  }

  .booking-layout {
    gap: 14px;
  }

  .steps-list li {
    padding: 12px;
  }

  .booking-form {
    gap: 12px;
  }

  .booking-form select,
  .booking-form input,
  .admin-form input,
  .admin-form select,
  .admin-form textarea {
    min-height: 46px;
    font-size: 1rem;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-actions .btn,
  .btn-module {
    min-height: 46px;
  }

  .planning-badge {
    white-space: normal;
  }

  .manage-card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manage-photo-actions .btn {
    min-height: 38px;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 46px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .dashboard-card,
  .event-card,
  .steps-panel,
  .form-panel,
  .module-item {
    padding: 14px;
  }

  .manage-card-actions {
    grid-template-columns: 1fr;
  }
}
