:root {
  --navy: #062d63;
  --blue: #0b4b8f;
  --cyan: #20a5d8;
  --ice: #eef8fc;
  --white: #ffffff;
  --text: #17324d;
  --muted: #678099;
  --line: #d4e7f0;
  --accent: #f5b42d;
  --shadow: 0 18px 50px rgba(6, 45, 99, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(32,165,216,.16), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(245,180,45,.15), transparent 20%),
    linear-gradient(180deg, #f7fcff 0%, #edf7fb 100%);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 40px;
}

/* HEADER I MIRATUAR — MOS E NDRYSHO */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 310px;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 260px; height: 260px;
  right: -80px; top: -120px;
  border: 38px solid rgba(255,255,255,.08);
}
.hero::after {
  width: 150px; height: 150px;
  left: 33%; bottom: -115px;
  border: 26px solid rgba(32,165,216,.22);
}
.logo {
  position: relative;
  z-index: 1;
  width: 148px;
  height: 148px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  border: 5px solid rgba(255,255,255,.32);
  outline: 2px solid rgba(255,255,255,.75);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.logo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #bfeeff;
}
h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .95;
  letter-spacing: -.04em;
}
.subtitle { margin: 12px 0 0; font-size: 17px; color: rgba(255,255,255,.86); }
.hero-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  justify-self: end;
}
.hero-action {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 12px 15px;
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255,255,255,.97);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: transform .2s ease, background .2s ease;
}
.hero-action:hover { transform: translateY(-2px); background: #fff; }
.hero-action-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #dff4fb;
  font-size: 20px;
}
.hero-action-text { display: block; font-size: 13px; font-weight: 800; line-height: 1.35; }

.category-nav {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 4px;
  padding: 10px;
  border: 1px solid rgba(212,231,240,.9);
  border-radius: 20px;
  background: rgba(247,252,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(6,45,99,.08);
}
.category-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}
.category-nav a:hover { background: #e9f8fd; }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.menu-card {
  scroll-margin-top: 100px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(212,231,240,.85);
  box-shadow: var(--shadow);
}
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.card-title h2 { margin: 0; font-size: 19px; }
.card-title span { font-size: 23px; }

table { width: 100%; border-collapse: collapse; table-layout: fixed; }
th {
  padding: 12px 16px;
  text-align: left;
  color: var(--muted);
  background: #f6fbfd;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
th:nth-child(1) { width: 48%; }
th:nth-child(2) { width: 27%; text-align: center; }
th:nth-child(3) { width: 25%; text-align: right; }
td { padding: 13px 16px; border-top: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
td:nth-child(2) { text-align: center; color: var(--muted); }
td:nth-child(3) { text-align: right; font-weight: 800; color: var(--navy); white-space: nowrap; }
tbody tr { transition: background .2s ease; }
tbody tr:hover { background: #f1faff; }

footer { padding: 26px 4px 0; text-align: center; color: var(--muted); font-size: 12px; }

@media (max-width: 840px) {
  .hero { grid-template-columns: auto 1fr; padding: 24px; }
  .hero-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; justify-self: stretch; }
}
@media (max-width: 560px) {
  .page { width: min(100% - 18px, 1180px); margin-top: 9px; }
  .hero { grid-template-columns: 1fr; text-align: center; border-radius: 21px; }
  .logo { width: 124px; height: 124px; margin: 0 auto; }
  .hero-actions { grid-column: 1; grid-template-columns: 1fr; width: 100%; justify-self: stretch; text-align: left; }
  .hero-action { width: 100%; }
  .category-nav { position: static; padding: 8px; border-radius: 16px; }
  .category-nav a { flex: 1 1 calc(50% - 8px); text-align: center; padding: 9px 8px; font-size: 11px; }
  .menu-card { border-radius: 18px; }
  .card-title { padding: 15px 16px; }
  th { padding: 10px 9px; font-size: 9px; }
  td { padding: 12px 9px; font-size: 12px; }
  td:nth-child(3) { font-size: 12px; }
}
