:root {
  --bg-main: #06361a;
  --bg-card: #09421f;
  --bg-card-soft: #0d4724;
  --accent-yellow: #ffcf57;
  --accent-orange: #ff9f2a;
  --text-main: #fdf5d9;
  --text-muted: #d3c9a5;
  --border-soft: #14552b;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #14552b 0, #02180a 55%);
  color: var(--text-main);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(4, 40, 18, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 28px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 110px;
  width: auto;
  display: block;
  position: absolute;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

.header-right {
  display: flex;
  align-items: center;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-large {
  padding: 14px 28px;
  font-size: 1rem;
  margin-top: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ffce58);
  color: #3a2303;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0d3e1e, #031d0d);
  box-shadow: var(--shadow-soft);
}

.hero-left {
  max-width: 520px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.05;
  margin: 0 0 8px;
}

.hero-subtitle {
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--accent-yellow);
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.feature-item {
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.05rem;
  font-weight: 350;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.25s; }
.feature-item:nth-child(3) { animation-delay: 0.40s; }
.feature-item:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO RIGHT */

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-burger-wrap {
  position: relative;
  max-width: 340px;
}

.hero-burger {
  width: 100%;
  display: block;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
}

.price-badge {
  position: absolute;
  right: 6%;
  bottom: 14%;
  background: radial-gradient(circle at top, #ffc864, #ff8c1a);
  color: #3b2103;
  border-radius: 999px;
  padding: 10px 16px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.65);
}

.price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
}

.price-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

/* MENU CARDS */
.burger-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.burger-card {
  position: relative;
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border-soft);
  transition: transform .36s ease, box-shadow .36s ease;
}

.burger-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(3, 6, 1, 0.6) 100%);
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
}

.burger-card .card-inner {
  position: relative;
  padding: 14px;
  z-index: 2;
}

.burger-card h3 {
  margin: 0;
  color: var(--accent-yellow);
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.burger-card p {
  margin: 4px 0 0;
  color: var(--text-main);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* hover effects */
.burger-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.burger-card .hover-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2b1a05;
  font-weight: 800;
  border: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .28s ease;
}

.burger-card:hover .hover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* card pop-in animation */
.reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .9, .3, 1);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* more items reveal grid layout when shown */
#more-items {
  display: none;
  gap: 14px;
}

#more-items.show {
  display: grid;
}

.btn-more {
  margin-top: 14px;
  background: var(--accent-yellow);
  color: #3a2303;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  width: 100%;
}

/* subtle background animated pattern */
.page::before {
  content: '';
  position: fixed;
  left: -10%;
  top: -20%;
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(circle at 20% 10%, rgba(255, 220, 120, 0.06), transparent 20%), radial-gradient(circle at 80% 90%, rgba(255, 120, 60, 0.03), transparent 15%);
  transform: rotate(-12deg);
  pointer-events: none;
}

/* BOTTOM SECTION */

.bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 26px;
}

.bottom-col {
  background: rgba(5, 39, 18, 0.96);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  box-shadow: var(--shadow-soft);
}

.bottom-col h2 {
  margin: 0 0 6px;
  font-size: 2.4rem;
  color: var(--accent-yellow);
}

.bottom-text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* STEPS */

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 182, 60, 0.1);
  border: 1px solid var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.step-body h3 {
  margin: 0 0 2px;
  font-size: 0.9rem;
}

.step-body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* LOCATION GRID */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.location-box {
  background: var(--bg-card-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  font-size: 0.84rem;
}

.location-box h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: var(--accent-yellow);
}

.location-box p {
  margin: 0 0 4px;
  color: var(--text-muted);
}

.location-box ul{
  padding-inline-start: 15px;
}

.map-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: italic;
}

/* FOOTER */

.footer {
  text-align: center;
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .nav {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .burger-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .logo {
    height: 80px;
    position: relative;
  }
  .header-right, .header-left {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .header {
    padding-inline: 14px;
  }

  .hero {
    padding: 22px 18px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .burger-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}