/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --yellow: #fff200;
  --yellow-dim: rgba(255, 242, 0, 0.12);
  --yellow-glow: rgba(255, 242, 0, 0.35);
  --black: #000000;
  --dark: #0a0a0a;
  --dark-card: #0f0f0f;
  --dark-border: #1c1c1c;
  --white: #ffffff;
  --grey: #888888;
  --grey-light: #cccccc;

  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ─── NOISE TEXTURE OVERLAY ──────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    transparent 100%
  );
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-decoration: none;
  filter: drop-shadow(0 0 14px var(--yellow-glow));
}
.nav-logo img {
  max-width: 150px;
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url(img/Hero/Main.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Radial glow behind hero */
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}

/* Smoke rings decoration */
.smoke-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 242, 0, 0.06);
  animation: expand 8s ease-out infinite;
}
.smoke-ring:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}
.smoke-ring:nth-child(2) {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}
.smoke-ring:nth-child(3) {
  width: 750px;
  height: 750px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
.smoke-ring:nth-child(4) {
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes expand {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(9rem, 20vw, 18rem);
  line-height: 0.85;
  letter-spacing: 0.08em;
  color: var(--yellow);
  filter: drop-shadow(0 0 40px rgba(255, 242, 0, 0.4));
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  background-color: rgba(0, 0, 0, 0.172);
  backdrop-filter: blur(5px);
}
.hero-brand img {
  max-width: 90%;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
  color: var(--grey-light);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  margin: 40px auto 0;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}

.section-label::before {
  content: "";
  flex: 0 0 40px;
  height: 1px;
  background: var(--yellow);
}

.section-label span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ─── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
  align-items: center;
}

.about-item {
  text-align: center;
  padding: 20px 40px;
}

.about-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.05em;
}

.about-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

.about-divider {
  width: 2px;
  height: 80px;
  background: var(--dark-border);
  margin: 0 auto;
}

/* ─── PRICE LIST ─────────────────────────────────────────────── */
.pricelist-section {
  background: var(--black);
}

.category-block {
  margin-bottom: 80px;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--grey-light);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--dark-border);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.price-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 36px 32px;
  position: relative;
  transition:
    border-color 0.3s,
    background 0.3s;
  overflow: hidden;
}
.price-card-img img {
  width: 100%;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}

.price-card:hover {
  border-color: rgba(255, 242, 0, 0.3);
  background: #111111;
}

.price-card:hover::before {
  background: var(--yellow);
}

.card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  display: inline-block;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  line-height: 1;
}

.card-unit {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.card-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* Featured card */
.price-card.featured {
  border-radius: 12px;
  border-color: rgba(255, 242, 0, 0.25);
  background: #0d0d00;
}

.price-card.featured::before {
  background: var(--yellow);
}

/* ─── HIGHLIGHT BANNER ───────────────────────────────────────── */
.highlight-banner {
  background: var(--yellow);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-banner::before,
.highlight-banner::after {
  content: "FUMO";
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(0, 0, 0, 0.06);
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.highlight-banner::before {
  left: -60px;
}
.highlight-banner::after {
  right: -60px;
}

.banner-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
}

.banner-text strong {
  font-weight: 700;
  font-style: normal;
}

/* ─── PREMIUM TABLE ──────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead tr {
  border-bottom: 1px solid var(--yellow);
}

.price-table th {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 16px 24px;
  text-align: left;
  font-weight: 400;
}

.price-table th:last-child {
  text-align: right;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--dark-border);
  transition: background 0.25s;
}

.price-table tbody tr:hover {
  background: var(--yellow-dim);
}

.price-table td {
  padding: 22px 24px;
  font-size: 0.88rem;
  color: var(--grey-light);
  letter-spacing: 0.03em;
}

.price-table td:first-child {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

.price-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

.tag-pill {
  display: inline-block;
  border: 1px solid var(--dark-border);
  color: var(--grey);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 0;
}

.tag-pill.hot {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ─── ORDER CTA ──────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: var(--white);
}

.cta-heading span {
  color: var(--yellow);
}

.cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey);
  margin-top: 24px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-input {
  background: transparent;
  border: 1px solid var(--dark-border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 18px 22px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.cta-input::placeholder {
  color: var(--grey);
}
.cta-input:focus {
  border-color: var(--yellow);
}

.cta-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 20px 40px;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.2s;
  align-self: flex-start;
}

.cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  filter: drop-shadow(0 0 8px var(--yellow-glow));
}

.footer-warning {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--grey);
  max-width: 400px;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* MENU */
.menu-img {
  width: 100%;
}
.menu-img img {
  width: 100%;
}
/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero {
    height: 50vh;
  }
  .pricelist-section {
    overflow: scroll;
  }
  nav {
    padding: 24px 30px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 40px 8px;
  }
  .section-label {
    margin-bottom: 40px;
  }
  .about-inner {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 50px 30px;
  }
  .about-divider {
    display: none;
  }
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .price-card {
    padding: 10px;
  }
  .card-desc {
    margin-bottom: 10px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 30px;
  }
  footer {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .highlight-banner {
    padding: 60px 30px;
  }
  .about-item {
    padding: 0;
  }
  .hero-divider {
    display: none;
  }
}
