:root {
  --bg-dark: #032f35;
  --bg-deep: #021c1f;
  --accent: #15b8a6;
  --accent-soft: #3cd5c7;
  --pista: #c7f0d8;
  --pista-soft: #e7ffe9;
  --text-main: #f7fdfb;
  --text-muted: #a7c8c2;
  --card-bg: rgba(3, 41, 45, 0.9);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.35);
  --transition-fast: 0.25s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #06494f 0, #021114 45%, #010609 100%);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(2, 31, 35, 0.98),
    rgba(2, 31, 35, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(199, 240, 216, 0.12);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--pista);
}

.brand-sub {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pista), var(--accent-soft));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--pista);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(199, 240, 216, 0.3);
  background: rgba(3, 47, 53, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--pista);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  padding: 4rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 20%, rgba(21, 184, 166, 0.10) 0, transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(199, 240, 216, 0.12) 0, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(3, 73, 79, 0.9) 0, transparent 60%);
  opacity: 0.75;
  pointer-events: none;
  z-index: -2;
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pista);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
  line-height: 1.08;
}

.hero h1 .ampersand {
  color: var(--accent-soft);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 30rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #021314;
  box-shadow: 0 12px 28px rgba(21, 184, 166, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(21, 184, 166, 0.65);
}

.btn.ghost {
  border-color: rgba(199, 240, 216, 0.4);
  color: var(--pista);
  background: rgba(2, 36, 39, 0.7);
}

.btn.ghost:hover {
  background: rgba(5, 72, 79, 0.9);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-info .divider {
  opacity: 0.5;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform-origin: center;
  animation: float 7s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.floating-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(3, 40, 45, 0.86);
  color: var(--pista);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(199, 240, 216, 0.3);
}

.floating-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(199, 240, 216, 0.4);
  box-shadow: 0 0 0 1px rgba(3, 65, 70, 0.8);
  animation: orbit 18s linear infinite;
}

.orbit-1 {
  width: 260px;
  height: 260px;
}

.orbit-2 {
  width: 340px;
  height: 340px;
  animation-duration: 24s;
  border-style: solid;
  border-color: rgba(21, 184, 166, 0.35);
}

.orbit-3 {
  width: 420px;
  height: 420px;
  animation-duration: 30s;
  border-color: rgba(199, 240, 216, 0.18);
}

/* Sections */

.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Menu */

.menu-section {
  padding: 2rem 5vw 3.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: radial-gradient(circle at top, rgba(199, 240, 216, 0.06), transparent 65%),
    var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 0.9rem 0.9rem 1.1rem;
  border: 1px solid rgba(199, 240, 216, 0.16);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transform-origin: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), background var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(199, 240, 216, 0.3);
  background: radial-gradient(circle at top, rgba(199, 240, 216, 0.1), transparent 70%),
    rgba(4, 58, 64, 0.96);
}

.menu-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.menu-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 23, 24, 0.8), transparent 60%);
  opacity: 0.5;
}

.menu-image-wrapper img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.5s ease-out;
}

.menu-card:hover .menu-image-wrapper img {
  transform: scale(1.08);
}

.menu-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.menu-items li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.menu-items li div {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-weight: 500;
}

.item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.item-price {
  font-weight: 600;
  color: var(--pista);
  white-space: nowrap;
}

/* Hours */

.hours-section {
  padding: 2rem 5vw 3.5rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.hours-card,
.note-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(199, 240, 216, 0.16);
  box-shadow: var(--shadow-subtle);
}

.hours-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(6, 99, 92, 0.8);
  font-size: 0.78rem;
  color: var(--pista);
  align-self: flex-start;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #55ff9b;
  box-shadow: 0 0 10px rgba(85, 255, 155, 0.7);
}

.hours-time {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.4rem;
}

.hours-time .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hours-time .time {
  font-size: 1.2rem;
  font-weight: 600;
}

.hours-detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(199, 240, 216, 0.25);
}

.hours-detail .label {
  color: var(--text-muted);
}

.hours-detail.closed .value {
  color: #ff9b9b;
}

.note-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.note-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.note-card li + li {
  margin-top: 0.3rem;
}

/* Footer */

.footer {
  padding: 1.2rem 5vw 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(199, 240, 216, 0.12);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  text-align: center;
}

/* Scroll reveal */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.12s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.22s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.32s;
}

/* Animations */

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr);
    padding-top: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hours-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .navbar {
    padding-inline: 1.25rem;
  }

  .hero,
  .menu-section,
  .hours-section {
    padding-inline: 1.25rem;
  }

  .nav-links {
    position: fixed;
    inset: 60px 1.25rem auto;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(3, 39, 43, 0.97);
    border: 1px solid rgba(199, 240, 216, 0.26);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

