html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff 0%, #ecdecb 100%);
  color: #2b2623;
  font-family: 'Inter', sans-serif;
}

.container {
  width: min(920px, 92vw);
  /* width: 60%; */
  margin: 0 auto;
  padding: 48px 0 36px;
  text-align: center;
  animation: fadeIn 1.1s ease forwards;
}

.logo {
  width: 290px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeLogo 0.9s ease forwards;
  filter: drop-shadow(0 10px 25px rgba(154, 130, 94, 0.15));
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: #262320;
  letter-spacing: 1px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 28px;
}

.categories a {
  text-decoration: none;
  color: #262320;
  border: 1px solid rgba(179, 167, 152, 0.35);
  padding: 10px 14px;
  border-radius: 999px;
  background-color: rgba(182, 180, 177, 0.55);
  font-size: 1.05rem;
  transition: transform .15s ease, background-color .15s ease;
}

.categories a:hover { transform: translateY(-3px); }

.section {
  text-align: left;
  margin: 38px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #262320;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  border: 1px solid rgba(179, 167, 152, 0.22);
  border-radius: 14px;
  padding: 14px;
  background: rgba(119, 85, 65, 0.10);
}

.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.name { font-weight: 600; color: #2b2623; }
.price { color: #6f665f; white-space: nowrap; font-weight: 500; }

.desc {
  margin: 6px 0 0;
  color: #6f665f;
  font-size: .95rem;
}

.descSandwiches {
  margin: 6px 0 0;
  color: #6f665f;
  font-size: .75rem;
}


.extra {
  display: block;
  font-size: 0.85rem;
  color: #8b7a6b;
  margin-top: 4px;
}

.info-alergeni {
  margin-top: 20px;       
  padding: 10px;
  background-color: #d4a373;
  border-left: 4px solid #2b1b0c;
  border-radius: 4px;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(179, 167, 152, 0.35);
  padding: 18px 16px 22px;
  color: #7a6e65;
  text-align: center;
}

.footer-inner {
  width: min(920px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-links a {
  color: #2b2623;
  text-decoration: none;
  border-bottom: 1px dashed rgba(43, 38, 35, 0.35);
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-links a:hover {
  border-bottom-style: solid;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.dot { opacity: 0.8; }

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-col {
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
  font-weight: 500;
}

.footer-right {
  text-align: right;
}

.footer a {
  color: #2b2623;
  text-decoration: none;
  border-bottom: 0px dashed rgba(43, 38, 35, 0.35);
}

.footer a:hover {
  border-bottom-style: solid;
}

.contact {
  font-size: 0.75rem;
  opacity: 0.8;
}

.section-note {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1em;
  color: #777;
  font-style: italic;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 38, 35, 0.10);
  border: 1px solid rgba(179, 167, 152, 0.6);
  color: #2b2623;
  text-decoration: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: opacity .3s ease, transform .3s ease;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); }

/* Animations */
@keyframes fadeLogo {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
