body {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  background: #f8f3e8;
  color: #222;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffef;
  border-bottom: 1px solid #eadfcb;
  backdrop-filter: blur(4px);
}

/* Anchor links should not hide behind sticky nav */
#om,
#artikler,
#aabningstider,
#faq,
#top {
  scroll-margin-top: 78px;
}

.top-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  color: #b22222;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.logo span {
  line-height: 1.1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.nav-links a {
  margin-left: 0;
  color: #1f7a3b;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  min-height: 56vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), var(--hero-image, url("images/hero.jpg"));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.hero-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 10px;
}

.hero p {
  font-size: 20px;
  margin: 0;
}

.hero-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-type-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn {
  display: inline-block;
  margin-top: 14px;
  background: #1f7a3b;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
}

.btn-order {
  background: #1f7a3b;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.btn-order:hover {
  background: #17602f;
}

.btn-map {
  margin-top: 10px;
  background: #b22222;
}

.btn-map:hover {
  background: #8d1b1b;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.headline {
  color: #b22222;
  margin-bottom: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eadfcb;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
  transform: scale(1);
}

.card:hover img {
  transform: scale(1.06);
}

.card img:hover {
  transform: scale(1.06);
}

.card:focus-within img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card img {
    transition: none;
  }
}

.card-content {
  padding: 14px;
}

.article {
  margin-top: 26px;
  background: #fff;
  border: 1px solid #eadfcb;
  border-radius: 12px;
  padding: 20px;
}

.article h2 {
  color: #b22222;
  margin-top: 0;
}

.article h3 {
  color: #1f7a3b;
  margin-bottom: 6px;
}

.article p {
  line-height: 1.65;
}

.site-footer {
  background: rgb(254, 210, 85);
  color: #1f1f1f;
  margin-top: 20px;
}

.site-footer a {
  color: #1f1f1f;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 20px 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.footer-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.footer-text {
  margin: 0;
  line-height: 1.5;
}

.hours-block {
  margin-top: 6px;
}

.hours-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.hours-title {
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin: 0 0 6px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  font-size: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hours-days {
  font-weight: 600;
}

.hours-time {
  white-space: nowrap;
  opacity: 0.95;
}

.zip-note {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.95;
}

.zip-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 13px;
}

@media (min-width: 720px) {
  .hours-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
  }
}

.footer-link {
  color: #1f1f1f;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 12px;
  opacity: 0.9;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  width: min(360px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.cookie-banner-title {
  font-weight: 800;
  color: #b22222;
  margin-bottom: 6px;
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.45;
  color: #1f1f1f;
}

.cookie-banner-text a {
  color: #1f1f1f;
  text-decoration: underline;
}

.cookie-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #1f1f1f;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner-more {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.95;
}

.cookie-banner-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-accept {
  background: #1f7a3b;
  color: #fff;
}

.cookie-accept:hover {
  background: #17602f;
}

.meal4u-logo-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.meal4u-logo {
  height: 36px;
  width: auto;
  display: block;
}

.map-frame {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 120px;
  border: 0;
}

.location-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.location-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.location-hours {
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
}

.location-hours-card {
  margin-top: 0;
  padding: 16px;
}

.location-hours-title {
  margin: 0 0 8px;
  color: #b22222;
}

.location-lead {
  margin-top: 0;
}

@media (max-width: 720px) {
  .hero {
    min-height: 44vh;
    background-attachment: scroll;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #111;
  }

  .hero-inner {
    padding: 34px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  .logo span {
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-logo {
    width: 58px;
    height: 58px;
  }

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

  .location-hours {
    padding-left: 0;
    border-left: 0;
  }

  .map-frame iframe {
    height: 160px;
  }
}
