/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg:           #F7F4F0;
  --bg-alt:       #FFFFFF;
  --bg-dark:      #1A1A17;
  --fg:           #1A1A17;
  --fg-on-dark:   #F7F4F0;
  --muted:        #807C74;
  --muted-on-dark:#8A8680;
  --border:       #E0DCD5;
  --border-dark:  #2E2D29;
  --max-w:        1100px;
  --narrow-w:     660px;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:        64px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   PASSWORD GATE
   ============================================================ */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.5s var(--ease);
}

#password-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.gate-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  letter-spacing: 0.05em;
  max-width: none;
}

.gate-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 0;
}

#gate-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#gate-input {
  width: 100%;
  background: rgba(247, 244, 240, 0.05);
  border: 1px solid var(--border-dark);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-on-dark);
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.2s;
}

#gate-input:focus {
  border-color: rgba(247, 244, 240, 0.4);
}

#gate-input::placeholder {
  color: var(--muted-on-dark);
  letter-spacing: 0.05em;
}

#gate-error {
  font-size: 0.78rem;
  color: #e07070;
  max-width: none;
  margin: 0;
}

#gate-form .btn {
  background: rgba(247, 244, 240, 0.9);
  color: var(--fg);
  border-color: transparent;
  margin-top: 0.25rem;
}

#gate-form .btn:hover {
  background: transparent;
  color: rgba(247, 244, 240, 0.9);
  border-color: rgba(247, 244, 240, 0.4);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; }

ul { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

p { max-width: 60ch; }

strong { font-weight: 500; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 7rem 2rem;
}

.container--narrow {
  max-width: var(--narrow-w);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
  margin-bottom: 3rem;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  background: transparent;
  color: var(--fg);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
}

.btn-outline:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-full {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

.btn-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

#submit-btn.is-loading .btn-text {
  display: none;
}

#submit-btn.is-loading .btn-spinner {
  display: inline-flex;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(247, 244, 240, 0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

#submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), border-bottom 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

#nav.scrolled {
  background: rgba(247, 244, 240, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  color: rgba(247, 244, 240, 0.9);
  transition: color 0.3s var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.6);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: rgba(247, 244, 240, 0.95);
}

.nav-btn {
  color: rgba(247, 244, 240, 0.9) !important;
  border-bottom: 1px solid rgba(247, 244, 240, 0.5);
  padding-bottom: 1px;
}

/* Nav — scrolled state (over light sections) */
#nav.scrolled .nav-logo {
  color: var(--fg);
}

#nav.scrolled .nav-links a {
  color: var(--muted);
}

#nav.scrolled .nav-links a:hover {
  color: var(--fg);
}

#nav.scrolled .nav-btn {
  color: var(--fg) !important;
  border-bottom-color: var(--fg);
}

#nav.scrolled .hamburger span {
  background: var(--fg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(247, 244, 240, 0.9);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
#mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(247, 244, 240, 0.98);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#mobile-nav ul {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#mobile-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

#mobile-nav a:hover {
  color: var(--fg);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #3a3730; /* vises hvis bildet ikke laster */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay for readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.6);
  margin-bottom: 1.5rem;
}

.hero-names {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #F7F4F0;
  margin-bottom: 0;
}

.hero-names em {
  font-style: italic;
  font-weight: 300;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: rgba(247, 244, 240, 0.3);
  margin: 2rem auto;
}

.hero-date {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F7F4F0;
  margin-bottom: 0.6rem;
}

.hero-location {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247, 244, 240, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* Button on dark hero */
.hero-content .btn {
  background: rgba(247, 244, 240, 0.9);
  color: var(--fg);
  border-color: transparent;
}

.hero-content .btn:hover {
  background: transparent;
  color: rgba(247, 244, 240, 0.9);
  border-color: rgba(247, 244, 240, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(247, 244, 240, 0.5);
  animation: bounce 2.5s infinite;
  transition: color 0.2s;
}

.hero-scroll:hover { color: rgba(247, 244, 240, 0.9); }

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

/* ============================================================
   OM FEIRINGEN
   ============================================================ */
#om {
  background: var(--bg-alt);
}

#om .container {
  text-align: center;
}

#om h2 {
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.om-body {
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.om-body p { max-width: none; }

.om-body p + p {
  margin-top: 1rem;
}

.om-deadline {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================================
   PROGRAM
   ============================================================ */
#program {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}

#program .section-label {
  color: var(--muted-on-dark);
}

#program h2 {
  color: var(--fg-on-dark);
  margin-bottom: 3.5rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border-dark);
}

.program-day {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-dark);
}

.program-day:last-child {
  border-right: none;
}

.program-day-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.program-day-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--muted-on-dark);
}

.program-day-meta {
  display: flex;
  flex-direction: column;
}

.program-day-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-on-dark);
}

.program-day-date {
  font-size: 0.75rem;
  color: var(--muted-on-dark);
  margin-top: 0.2rem;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.program-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.program-time {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted-on-dark);
}

.program-event strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg-on-dark);
  margin-bottom: 0.2rem;
}

.program-event p {
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  line-height: 1.6;
  max-width: none;
}

/* ============================================================
   STED
   ============================================================ */
#sted {
  background: var(--bg);
}

.sted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sted-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 2.5rem;
  max-width: none;
}

.sted-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.sted-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  font-size: 0.875rem;
}

.detail-label {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0.15rem;
}

.detail-value {
  color: var(--fg);
}

.sted-visual {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sted-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sted-bilde {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.sted-placeholder-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  max-width: none;
}

.sted-placeholder-city {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  max-width: none;
}

/* ============================================================
   OVERNATTING
   ============================================================ */
#overnatting {
  background: var(--bg-alt);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hotel-card {
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s;
}

.hotel-card:hover {
  border-color: var(--muted);
}

.hotel-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
}

.hotel-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.hotel-location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hotel-info p:not(.hotel-location):not(.hotel-price) {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
}

.hotel-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  margin-top: 0.75rem;
  max-width: none;
}

/* ============================================================
   PÅMELDING
   ============================================================ */
#pamelding {
  background: var(--bg);
}

#pamelding h2 {
  text-align: center;
}

#pamelding .section-label {
  text-align: center;
  display: block;
}

#pamelding .section-intro {
  text-align: center;
  max-width: none;
  margin-inline: auto;
}

/* Form */
.form-group {
  margin-bottom: 1.75rem;
}

.form-group > label:first-child {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.required {
  color: var(--fg);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--fg);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Radio group (same layout as checkboxes) */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg);
  user-select: none;
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-label input:checked + .checkbox-box {
  background: var(--fg);
  border-color: var(--fg);
}

.checkbox-label input:checked + .checkbox-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 1.5px solid var(--bg);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-label:hover .checkbox-box {
  border-color: var(--muted);
}

.checkbox-label input[type="radio"] + .checkbox-box {
  border-radius: 50%;
}

.checkbox-label input[type="radio"]:checked + .checkbox-box::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.5rem;
}

/* Form feedback */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  max-width: none;
}

.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.form-error-msg {
  color: #c0392b;
  border: 1px solid #f5c6cb;
  background: #fff5f5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  text-align: center;
  padding: 3.5rem 2rem;
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  max-width: none;
}

.footer-info {
  font-size: 0.78rem;
  color: var(--muted-on-dark);
  letter-spacing: 0.08em;
  max-width: none;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--border-dark);
  }

  .program-day {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .program-day:last-child {
    border-bottom: none;
  }

  .sted-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sted-visual {
    position: static;
    order: -1;
  }

  .hotel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .container {
    padding: 5rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-names {
    font-size: clamp(2.75rem, 16vw, 5rem);
  }

  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .program-day {
    padding: 2rem 1.5rem;
  }
}
