/* ============================================================
   RANDRUP DINING — Stylesheet
   Ingen Bootstrap. Ren custom CSS.
   Farver: mørkegrøn #013220 / beige #F6EED6 / orange #D56E3F
   Fonte: Playfair Display (headings) + Montserrat (body)
   ============================================================ */

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

:root {
  --green:   #013220;
  --green2:  #123222;
  --beige:   #F6EED6;
  --beige2:  #fff8ed;
  --beige3:  #fffbe8;
  --orange:  #D56E3F;
  --orange2: #b2582e;
  --text:    #1c2a22;
  --muted:   #5f4d39;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Montserrat', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-b);
  background: var(--beige);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px dashed var(--orange); outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.2; color: var(--green); }
p { line-height: 1.75; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { animation: fadeUp 0.75s ease-out both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.22s; }
.anim-d3 { animation-delay: 0.38s; }

/* ── NAVBAR — DESKTOP ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  z-index: 500;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

#navbar.scrolled {
  background: rgba(248,243,232,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.05);
  padding: 0.5rem 2.5rem;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 52px;
  transition: height 0.35s;
  border-radius: 50%;
}

#navbar.scrolled .nav-logo { height: 38px; }

.nav-brand-name {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--green2);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

#navbar.scrolled .nav-brand-name { opacity: 1; transform: translateY(0); }

#navbar nav ul {
  display: flex; align-items: center; gap: 0;
}

#navbar nav ul li a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  padding: 0.45em 0.9em;
  border-radius: 2em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

/* Over hero — letters readable on dark bg */
#navbar:not(.scrolled) nav ul li a {
  color: rgba(248,243,232,0.82);
}
#navbar:not(.scrolled) nav ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

#navbar nav ul li a:hover,
#navbar nav ul li a:focus { color: var(--orange); background: rgba(213,110,63,0.08); }

/* Firmafrokost — subtle, not dominant */
.nav-cta {
  background: transparent !important;
  color: var(--green) !important;
  padding: 0.45em 1em !important;
  border-radius: 2em;
  border: 1.5px solid var(--green);
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
  display: inline-flex; align-items: center; gap: 0.35em;
  white-space: nowrap;
}
#navbar:not(.scrolled) .nav-cta {
  border-color: rgba(248,243,232,0.5);
  color: rgba(248,243,232,0.82) !important;
}
#navbar:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--green) !important;
  color: var(--beige) !important;
  transform: translateY(-1px) !important;
}

/* Dropdown removed — by-links moved to footer */
.dropdown { position: relative; }




/* ── MOBILE NAVBAR ── */
#mobile-navbar { display: none; }

@media (max-width: 820px) {
  #navbar { display: none; }

  #mobile-navbar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 500;
    background: var(--beige);
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    justify-content: space-around;
    height: 62px;
    padding: 0;
  }

  #mobile-navbar a {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 2px;
    color: var(--green); font-size: 0.72rem; font-weight: 600;
    padding: 6px 0 4px;
    transition: background 0.15s;
    border-radius: 0;
  }

  #mobile-navbar a:hover, #mobile-navbar a:active { background: rgba(213,110,63,0.1); }
  #mobile-navbar i { font-size: 1.35rem; }

  #mobile-navbar a.mobile-cta {
    background: var(--green);
    color: var(--beige);
    border-radius: 0;
  }

  #mobile-navbar a.mobile-cta:hover { background: var(--green2); color: var(--beige); }

  body { padding-bottom: 62px; }
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 540px;
  background: url('../assets/hero-randrup-dining.png') center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(1,50,32,0.52) 0%, rgba(0,0,0,0.38) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 640px;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease-out;
}

.hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-content h1 span {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-family: var(--font-b);
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 2.2rem;
  opacity: 0.92;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--orange);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3em;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-b);
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(213,110,63,0.35);
  text-decoration: none;
}

.btn:hover, .btn:focus {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(213,110,63,0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  box-shadow: none;
}

.btn-outline:hover { background: var(--orange); color: #fff; }

.btn-green {
  background: var(--green);
  box-shadow: 0 6px 20px rgba(1,50,32,0.25);
}
.btn-green:hover { background: var(--green2); }

/* ── SECTIONS ── */
.section {
  padding: 6rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.section-alt {
  background: var(--beige2);
}

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

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--orange);
  margin-bottom: 1rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-section {
  background: var(--beige);
  padding: 5rem 2rem 5rem;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--beige3);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(1,50,32,0.07);
  padding: 3.5rem 3rem;
}

.about-content { flex: 2; }

.about-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--orange);
  margin-bottom: 1.2rem;
  text-align: left;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
}

.about-image { flex: 0 0 auto; }

.about-image img {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--beige);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 820px) {
  .about-flex {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 2.2rem 1.4rem;
    text-align: center;
  }
  .about-image img { width: 160px; height: 160px; }
  .about-content h2 { text-align: center; }
}

/* ── PRIVAT DINING ── */
.privat-dining-section {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.privat-dining-content { flex: 2; min-width: 0; }

.privat-dining-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--orange);
  text-align: left;
  margin-bottom: 1rem;
}

.privat-dining-content h3 {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin: 1.5rem 0 0.5rem;
}

.privat-dining-content p { font-size: 1.04rem; line-height: 1.8; margin-bottom: 1rem; }

.privat-dining-content ol,
.privat-dining-content ul { padding-left: 1.4rem; margin-bottom: 1rem; list-style: revert; }

.privat-dining-content li { font-size: 1.02rem; line-height: 1.7; margin-bottom: 0.4em; }

.privat-dining-img {
  flex: 1.2; min-width: 260px;
  display: flex; align-items: flex-start; justify-content: flex-end;
}

.privat-dining-img img {
  width: 100%; max-width: 420px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 860px) {
  .privat-dining-section { flex-direction: column; gap: 2rem; padding: 3rem 1.2rem; }
  .privat-dining-img { justify-content: center; }
  .privat-dining-img img { max-width: 100%; }
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 5rem 2rem;
  background: var(--beige2);
}

.reviews-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--orange);
  text-align: center;
  margin-bottom: 0.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1020px;
  margin: 2.5rem auto 0;
}

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.3rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--orange);
}

.review:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

.review p { font-style: italic; font-size: 0.97rem; color: var(--text); line-height: 1.65; flex: 1; }

.review .review-full { display: none; }
.review.expanded .review-short { display: none; }
.review.expanded .review-full { display: inline; }

.review-toggle {
  margin: 1rem 0 0.8rem;
  padding: 0.3em 1em;
  background: none;
  border: 1.5px solid var(--orange);
  border-radius: 2em;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-b);
  transition: background 0.15s, color 0.15s;
  align-self: flex-start;
}

.review-toggle:hover { background: var(--orange); color: #fff; }

.review footer {
  background: none;
  padding: 0; border: none;
  display: flex; flex-direction: column; gap: 1px;
}

.review-name { font-weight: 700; font-size: 0.95rem; color: var(--green); }
.review-city { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── GALLERY / MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e5e5e5;
}

.menu-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }

.menu-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

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

.menu-card .info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(1,50,32,0.88), transparent);
  color: #fff;
  padding: 2rem 1.1rem 1rem;
  font-family: var(--font-h);
}

.menu-card .info h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
}

.menu-card .info p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin: 0.2em 0 0;
  font-family: var(--font-b);
}

.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.instagram-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border-radius: 2em;
  padding: 0.65em 1.4em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.18s, color 0.18s;
}

.instagram-link:hover { background: var(--orange); color: #fff; }
.instagram-link:hover img { filter: brightness(0) invert(1); }

/* ── CONTACT ── */
.contact-section {
  padding: 5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(1,50,32,0.08);
}

.contact-card h2 {
  text-align: center;
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-card .lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.1rem; }

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e0d9cc;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text);
  background: var(--beige3);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(213,110,63,0.1); }

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-b);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.contact-form button:hover { background: var(--orange2); transform: translateY(-1px); }

.info-link-btn {
  background: none; border: none;
  color: var(--orange); font-weight: 600;
  font-family: var(--font-b); font-size: 0.95rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.4em 0; transition: color 0.2s; margin-top: 0.5rem;
}

.info-link-btn:hover { color: var(--orange2); text-decoration: underline; }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--orange);
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%; text-align: left;
  padding: 1.15rem 1.4rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: 1rem; font-weight: 600;
  color: var(--orange);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--beige3); }

.faq-arrow {
  font-size: 1rem; flex-shrink: 0;
  transition: transform 0.22s;
  color: var(--orange);
}

.faq-item.open .faq-arrow { transform: rotate(90deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 1.4rem;
  background: var(--beige3);
  color: var(--text); font-size: 0.97rem; line-height: 1.7;
  transition: max-height 0.3s cubic-bezier(0.36,0.61,0.36,1), padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 320px; padding: 1rem 1.4rem 1.3rem; }

/* ── MODAL ── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5);
  align-items: center; justify-content: center;
  padding: 1rem;
}

.modal.is-open, .modal[style*="flex"] { display: flex; }

.modal-content {
  background: var(--beige3);
  border-radius: 18px;
  max-width: 460px; width: 100%;
  padding: 2.2rem 2rem;
  box-shadow: 0 16px 60px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeUp 0.3s ease;
}

.close-modal {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.4rem; color: var(--muted);
  cursor: pointer; transition: color 0.2s;
}

.close-modal:hover { color: var(--orange); }

.modal-content h2 {
  font-size: 1.5rem; color: var(--orange);
  margin-bottom: 1.3rem;
}

.modal-content label {
  display: block; font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted); margin-bottom: 0.35rem;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid #e0d9cc; border-radius: 9px;
  font-family: var(--font-b); font-size: 0.97rem;
  color: var(--text); background: #fff;
  margin-bottom: 1rem; outline: none;
  transition: border-color 0.2s;
}

.modal-content input:focus,
.modal-content textarea:focus { border-color: var(--orange); }

.modal-content textarea { min-height: 90px; resize: vertical; }

.btn-submit {
  width: 100%; padding: 0.85rem;
  background: var(--orange); color: #fff;
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700;
  font-family: var(--font-b); cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--orange2); transform: translateY(-1px); }

.modal-footer-link { margin-top: 0.8rem; text-align: center; font-size: 0.88rem; }
.modal-footer-link a { color: var(--muted); text-decoration: underline; }
.modal-footer-link a:hover { color: var(--orange); }

/* ── INFO BOX (undersider) ── */
.info-box {
  background: var(--beige3);
  border-radius: var(--radius);
  padding: 2rem 2rem;
  margin: 2.5rem auto;
  max-width: 760px;
  border-left: 4px solid var(--orange);
}

.info-box h2 {
  font-family: var(--font-h);
  color: var(--orange);
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 1rem;
}

.info-box ul { padding-left: 1.2rem; list-style: disc; }
.info-box li { font-size: 1rem; line-height: 1.75; margin-bottom: 0.5em; color: var(--text); }
.info-box a { color: var(--orange); text-decoration: underline; }

/* ── MENU EVENT UNDERSIDER ── */
.menu-event-section {
  max-width: 960px;
  margin: 7rem auto 2rem;
  padding: 0 1.5rem;
}

.back-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: #fff; border-radius: 2em;
  color: var(--orange); font-weight: 600; font-size: 0.95rem;
  padding: 0.55em 1.2em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: background 0.15s, color 0.15s;
}

.back-link:hover { background: var(--orange); color: #fff; }

.event-menu-flex {
  display: flex; gap: 3rem; align-items: flex-start;
  background: var(--beige3);
  border-radius: 22px;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  margin-bottom: 2.5rem;
}

.event-menu-content { flex: 2; min-width: 0; }

.event-menu-content h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  color: var(--orange);
  margin-bottom: 1rem;
}

.menu-heading {
  font-family: var(--font-h);
  color: var(--orange);
  font-size: 1.35rem;
  margin: 1.8rem 0 0.8rem;
}

.event-menu-list {
  padding-left: 1.3rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}

.event-menu-list li { font-size: 1.02rem; line-height: 1.6; margin-bottom: 0.4em; }
.menu-info { font-size: 1.02rem; color: var(--text); line-height: 1.75; }

.event-menu-img { flex: 1; min-width: 220px; }

.event-menu-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--orange); color: #fff;
  padding: 0.9rem 2rem; border-radius: 3em;
  font-weight: 700; font-size: 1rem; font-family: var(--font-b);
  border: none; cursor: pointer; margin-top: 1.5rem;
  box-shadow: 0 6px 20px rgba(213,110,63,0.3);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); color: #fff; }

@media (max-width: 820px) {
  .event-menu-flex { flex-direction: column; gap: 1.8rem; padding: 1.8rem 1.2rem; }
  .event-menu-img img { max-width: 380px; margin: 0 auto; }
  .menu-event-section { margin-top: 5rem; }
}

/* ── FOOTER ── */
footer {
  background: var(--beige2);
  color: var(--text);
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

footer p { font-size: 0.95rem; color: var(--muted); }

.footer-links {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: center;
  margin: 1.4rem 0;
}

.footer-links li a {
  display: flex; align-items: center; gap: 0.45em;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}

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

.social-icons {
  display: flex; gap: 1.6rem; justify-content: center; margin-top: 1rem;
}

.social-icons a {
  font-size: 1.8rem; color: var(--green);
  transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover { color: var(--orange); transform: translateY(-2px); }

/* ── MAIL POPUP ── */
#mailPopup {
  display: none;
  position: fixed; bottom: 2rem; right: 2rem;
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 1.3rem 1.6rem 1.1rem;
  max-width: 320px; z-index: 3000;
  animation: fadeUp 0.4s ease;
  border-left: 4px solid var(--orange);
}

#mailPopup p { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
#mailPopup button {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--muted); float: right;
}

/* ── FIRMAFROKOST POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2500;
  display: none; place-items: center;
  background: rgba(0,0,0,0.45); padding: 16px;
}

.popup-overlay.is-open { display: grid; }

.popup-card {
  width: min(520px, 100%);
  background: #fff; border-radius: 20px;
  padding: 2rem 1.8rem 1.5rem;
  box-shadow: 0 20px 64px rgba(0,0,0,0.22);
  position: relative;
  border: 1px solid rgba(1,50,32,0.06);
  animation: fadeUp 0.35s ease;
}

.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  border: none; background: transparent;
  font-size: 1.2rem; cursor: pointer; color: var(--muted);
}

.popup-close:hover { color: var(--orange); }

.popup-title {
  font-family: var(--font-h); color: var(--green);
  font-size: 1.45rem; margin: 0 2rem 0.7rem 0;
}

.popup-text {
  font-family: var(--font-b); color: var(--text);
  line-height: 1.55; margin-bottom: 1.3rem; font-size: 0.97rem;
}

.popup-actions {
  display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap;
}

.popup-primary {
  background: var(--green); color: var(--beige);
  padding: 0.75rem 1.3rem; border-radius: 2em;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: opacity 0.18s;
  text-decoration: none;
}

.popup-primary:hover { opacity: 0.9; color: var(--beige); }

.popup-secondary {
  border: 1.5px solid rgba(1,50,32,0.2);
  background: var(--beige); color: var(--green);
  padding: 0.75rem 1.3rem; border-radius: 2em;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  font-family: var(--font-b); transition: background 0.15s;
}

.popup-secondary:hover { background: #eedfc4; }

.popup-note {
  font-size: 0.8rem; color: rgba(1,50,32,0.55);
  font-family: var(--font-b); margin-top: 1rem;
}

/* ── MODAL-OVERLAY variant ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 4000;
  padding: 1rem; background: rgba(0,0,0,0.55);
  align-items: center; justify-content: center;
}
.modal-overlay.is-open { display: flex; }

.modal-card {
  width: 100%; max-width: 720px;
  background: #fff; border-radius: 20px;
  padding: 2rem 2.2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeUp 0.25s ease;
}

.modal-title { font-family: var(--font-h); color: var(--green2); font-size: 1.6rem; margin-bottom: 0.8rem; }
.modal-text  { color: rgba(1,50,32,0.8); line-height: 1.65; margin-bottom: 1rem; }
.modal-list  { padding-left: 1.2rem; list-style: disc; line-height: 1.65; color: rgba(1,50,32,0.85); }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(1,50,32,0.15); background: #fff;
  color: var(--green); cursor: pointer; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.modal-close:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }

/* ── UTILITIES ── */
.section--alt { background: var(--beige2); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── RESPONSIVE MISC ── */
@media (max-width: 600px) {
  .section, .faq-section, .contact-section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .contact-card { padding: 1.6rem 1.2rem; }
  .modal-card { padding: 1.4rem; }
}

/* ── LEGAL PAGES (spolitik, handelsbetingelser) ── */
.legal-section {
  max-width: 760px;
  margin: 7rem auto 5rem;
  padding: 0 1.5rem;
}

.legal-section h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--orange);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(213,110,63,0.15);
}

.legal-section h2 {
  font-size: 1.2rem;
  color: var(--green);
  text-align: left;
  margin: 2rem 0 0.6rem;
  font-family: var(--font-b);
  font-weight: 700;
}

.legal-section p { font-size: 1rem; line-height: 1.8; margin-bottom: 0.8rem; }

.legal-section ul, .legal-section ol {
  padding-left: 1.3rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-section li { font-size: 1rem; line-height: 1.75; margin-bottom: 0.4em; }

.legal-section a { color: var(--orange); text-decoration: underline; }
.legal-section a:hover { color: var(--orange2); }

.legal-info {
  background: var(--beige3);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.legal-info a { color: var(--orange); }

@media (max-width: 600px) {
  .legal-section { margin-top: 5rem; }
}

/* Scroll offset for sticky nav */
#om, #menu, #kontakt, #faq, #privatdining, #galleri {
  scroll-margin-top: 100px;
}
