/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream: #fcf0d5;
  --cream-dark: #f5e6c0;
  --cream-border: #d9ceb8;
  --teal: #022e48;
  --teal-light: #033d61;
  --gold: #c8b99a;
  --gold-dark: #8b7355;
  --text: #1b4a52;
  --text-muted: #7a8a8c;
  --white: #ffffff;
  --green: #3b6d11;
  --green-bg: #eaf3de;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-est {
  color: var(--cream);
  font-size: 15px;
  align-self: flex-end;
  margin-bottom: 12px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */

.btn-sidebar {
  cursor: pointer;
  background: none;
  border: none;
  color: var(--cream);
  font-size: large;
  margin-left: auto;
  transition: 0.3s;
}

.sidebar.open {
  transform: translateX(0);
}
.sidebar {
  position: fixed;
  right: 0;
  background: var(--teal);
  width: 100%;
  transform: translateX(100%);
  z-index: 100;
  transition: 0.3s;
  padding-top: 20px;
  flex-direction: column;
  height: calc(100vh - 64px);
  display: flex;
  top: 64px;
  color: var(--cream);
  overflow-y: auto;
}

.sidebar a {
  font-size: 20px;
  padding: 10px;
  color: var(--cream);
}

.sidebar-phone {
  margin: 10px 20px 20px 20px;
  text-align: center;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 8px;
  padding: 15px 10px;
}

.sidebar-divider {
  margin-top: auto;
  border-top: 1px solid rgba(245, 240, 232, 0.3);
  margin-left: 20px;
  margin-right: 20px;
}

.menu {
  font-size: 28px;
  color: var(--cream);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 50;
  transition: 0.3s;
}

.overlay.open {
  display: block;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 49px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: larger;
  color: var(--cream);
}
/* ─── HERO ───────────────────────────────────────────────── */
.hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}

/* ─── MENU ───────────────────────────────────────────────── */
.menu-section {
  background: var(--cream);
  padding: 4rem 3rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto 0 auto;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.1;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(245, 240, 232, 0.3);
  margin: 0;
}

.tab-bar {
  width: 100%;
  display: flex;
  background: var(--teal);
  padding: 15px 20px;
  flex-direction: row;
  border-radius: 16px;
}

.tab {
  font-size: 20px;
  padding: 4px 30px;
  border-radius: 0;
  background: none;
  color: var(--cream-dark);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "DM Sans", sans-serif;
  user-select: none;
  white-space: nowrap;
}

.menu-title {
  color: var(--cream);
  font-size: 20px;
  align-self: center;
}

.tab.active {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

.tab:hover:not(.active) {
  color: var(--cream);
  opacity: 0.7;
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 20px;
}

.group-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--cream-dark);
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top: 18px;
}

.menu-col > .group-label:first-child {
  margin-top: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 0.5px solid #eee9de;
  gap: 16px;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-left {
  flex: 1;
}

.item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.item-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.5;
  font-weight: 300;
}

.item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 12px;
  padding: 10px;
  margin: 0 auto;
  justify-content: space-evenly;
}
.card-item {
  height: 100%;
  width: 100%;
  max-width: 360px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-item:hover {
  transform: translateY(-5px);
}

.card-item:hover .card-img {
  transform: scale(1.05);
}

.card-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  background: white;
}

.mobile-img {
  display: none;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.card-name {
  font-size: 22px;
  font-weight: bold;
  padding: 12px 14px 6px;
  color: var(--cream);
}

.card-desc {
  padding: 0 14px;
  color: #666;
  line-height: 1.5;
  color: var(--cream);
}

.card-info {
  background: var(--teal);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.group-info {
  padding-top: 10px;
  display: flex;
  color: var(--teal);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  padding: 10px 20px;
  border-bottom: 1px solid var(--cream-border);
  margin-bottom: 15px;
}

.badge-veg {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-size: 9px;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.badge-new {
  display: inline-block;
  background: #fff3e0;
  color: #c17700;
  font-size: 9px;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 500;
  margin-left: 6px;
}

.menu-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--cream-border);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--teal);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-right: auto;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.icons-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  opacity: 0.8;
  align-items: center;
  border-radius: 8px;
}

.delivery-icon {
  width: 50px;
  height: 50px;
}
/* ─── KONTAKT ────────────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 4rem 3rem;
  text-align: center;
}

.reviews-section {
  background: var(--teal);
  padding: 4rem 3rem;
  text-align: center;
  scroll-margin-top: 65px;
}

.reviews-section .section-title {
  color: var(--cream);
}

.contact-section .section-title {
  margin-bottom: 0.5rem;
}

.review-btn {
  display: inline-block;
  background: var(--cream);
  color: var(--teal);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 30px;
}

.review-stars {
  margin-top: 30px;
  font-size: 35px;
}

.review-text {
  font-size: large;
  color: var(--cream);
  margin-top: 10px;
}

.contact-section .section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  background: var(--cream);
  border: 0.5px solid var(--cream-border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  width: 220px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.contact-item:hover {
  box-shadow: 0 4px 20px rgba(27, 74, 82, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 0.75rem;
}

.badge-summer {
  font-size: 28px;
  margin-bottom: 0.75rem;
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 14px;
  color: var(--teal);
  font-weight: 400;
  line-height: 1.6;
}

.contact-link {
  text-decoration: none;
  color: var(--teal);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--teal-light);
  text-decoration: underline;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 0.5px solid var(--cream-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.closed {
  color: var(--text-muted);
  font-style: italic;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
  }

  .menu-section {
    padding: 2.5rem 1.25rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    overflow-x: auto;
  }

  .section-divider {
    border: none;
    border-top: 2px solid rgba(245, 240, 232, 0.6);
    margin: 0;
  }
  .contact-section {
    background: var(--teal);
    padding-top: 1rem;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .nav-logo-name {
    font-size: 14px;
  }
  .nav-est {
    font-size: 9px;
  }

  .hero img {
    height: 260px;
  }

  .contact-grid {
    flex-direction: column;
    padding: 0 1rem;
    align-items: center;
  }

  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card-item {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }

  .card-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    align-self: center;
    margin-left: 10px;
  }

  .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .card-info {
    text-align: left;
    padding: 0 0;
    background: none;
  }

  .group-info {
    padding: 8px 16px;
    text-align: left;
  }

  .card-desc {
    color: var(--text-muted);
  }

  .card-name {
    color: var(--teal);
    font-size: 16px;
  }

  .contact-item {
    width: 100%;
    padding: 1rem;
    background: var(--cream);
  }

  .tab-bar {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    scrollbar-width: none;
    padding: 6px 8px;
    font-size: 13px;
  }

  .delivery-icon {
    width: 45px;
    height: 50px;
  }

  .section-subtitle {
    font-size: 30px;
  }
}

.footer-copy {
  text-align: center;
  width: 100%;
}

/* ─── DESKTOP ────────────────────────────────────────────── */
@media (min-width: 769px) {
  .tab-bar {
    justify-content: center;
    gap: 10px;
  }
  .tab {
    padding: 4px 20px;
  }
}
