/* ---------- Base reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Theme ---------- */
:root{
  --bg: #ffffff;
  --page-bg: #f6f2f2;
  --text: #1b1b1b;
  --muted: #666;
  --brand: #BCA4A7;       /* dusty rose */
  --brand-dark: #a68c8e;
  --card-radius: 22px;
  --shadow: 0 10px 35px rgba(0,0,0,.10);
}

/* ---------- Layout ---------- */
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  padding: 22px;
}

.page{
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Topbar / nav ---------- */
.topbar{
  background: var(--bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img{
  max-height: 62px;
}

.nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav__link{
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  transition: .2s ease;
}

.nav__link:hover{
  background: rgba(188,164,167,.18);
}

.nav__link.is-active{
  background: rgba(188,164,167,.28);
}

.nav__cta{
  display: flex;
  justify-content: flex-end;
}

/* ---------- Card ---------- */
.card{
  background: var(--bg);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 34px 26px;
}

h1{
  font-size: 2.1rem;
  letter-spacing: .01em;
  margin-bottom: 12px;
  text-align: center;
}

h2{
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p{
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
}

.section{
  margin-top: 26px;
}

.muted{ color: var(--muted); }
.small{ font-size: .95rem; }

/* ---------- Buttons & links ---------- */
.actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0 8px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;

  background: var(--text);
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 1.05rem;
  transition: .2s ease;
}

.btn:hover{ opacity: .92; }

.btn--accent{
  background: var(--brand);
  color: #fff;
}

.btn--accent:hover{
  background: var(--brand-dark);
}

.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(27,27,27,.18);
}

.btn--ghost:hover{
  background: rgba(27,27,27,.04);
}

.link{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Info grid (forside) ---------- */
.info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.info{
  background: rgba(188,164,167,.10);
  border-radius: 18px;
  padding: 16px 16px;
}

.info p{
  text-align: left;
  margin-bottom: 10px;
}

/* ---------- Dates ---------- */
.dates{
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 12px 0 8px;
}

.pill{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(188,164,167,.20);
  border: 1px solid rgba(188,164,167,.35);
  font-weight: 600;
}

/* ---------- Form ---------- */
.form{
  margin-top: 10px;
}

.form__row{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label{
  font-weight: 600;
}

input, select, textarea{
  width: 100%;
  border: 1px solid rgba(27,27,27,.18);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 1rem;
  outline: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(188,164,167,.80);
  box-shadow: 0 0 0 4px rgba(188,164,167,.18);
}

textarea{ resize: vertical; }

/* ---------- Footer ---------- */
.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.dot{ opacity: .6; }

/* ---------- Responsive ---------- */
@media (max-width: 820px){
  .topbar{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .nav__cta{ justify-content: center; }
  .info-grid{ grid-template-columns: 1fr; }
}

.menu-button,
.map-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1b1b1b;
    color: #fff !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    margin: 10px 0 20px 0;
    transition: 0.3s ease;
}

.menu-button:hover,
.map-button:hover {
    background-color: #555;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    background: #1b1b1b;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #555;
}

.form label,
.form p {
  text-align: left;
}

/* ===========================
   FORM STYLING – MENU/BRUNCH
   =========================== */

.menu-wrapper .form {
    margin-top: 20px;
    background: rgba(188,164,167,.08);
    padding: 24px 22px;
    border-radius: 18px;
}

.menu-wrapper .form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.menu-wrapper .form label {
    font-weight: 600;
    color: #1b1b1b;
    text-align: left;
}

.menu-wrapper .form input,
.menu-wrapper .form select,
.menu-wrapper .form textarea {
    width: 100%;
    border: 1px solid rgba(27,27,27,.25);
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 1rem;
    background: #fff;
}

.menu-wrapper .form input:focus,
.menu-wrapper .form select:focus,
.menu-wrapper .form textarea:focus {
    border-color: #BCA4A7;
    box-shadow: 0 0 0 4px rgba(188,164,167,.25);
    outline: none;
}

.menu-wrapper .form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Knapper i formular */
.menu-wrapper .form .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.menu-wrapper .form .btn {
    min-width: 180px;
}

/* Mobil */
@media (max-width: 600px) {
    .menu-wrapper .form {
        padding: 20px 16px;
    }
}

.menu-wrapper .form {
  background: rgba(188,164,167,.08);
  padding: 24px 22px;
  border-radius: 18px;
  margin-top: 16px;
}

.menu-wrapper .form label {
  text-align: left;
}
