:root {
  /* Palette sampled from aragon16.hex */
  --bg: #f9f8dd;          /* cream */
  --bg-card: #ffffff;     /* clean white cards */
  --accent: #a8d455;      /* bright green */
  --accent-dark: #5c8d58; /* deeper green for hovers */
  --gold: #e0bf7a;        /* warm accent */
  --pop: #6b72d4;         /* blue-violet pop */
  --text: #3b473c;        /* dark green-gray */
  --text-muted: #876661;  /* warm muted brown */
  --radius: 14px;
  --max-width: 1100px;
  --font-display: "Rubik Dirt", system-ui, sans-serif;
  --font-body: "Federo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 1px;
}

.brand-accent {
  color: var(--pop);
}

.tagline {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.site-nav a {
  margin-left: 1.5rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

/* Section headings */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Menu / Carousel */
.menu {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-track {
  overflow: hidden;
  border-radius: var(--radius);
}

.menu-item {
  display: none;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(59, 71, 60, 0.15);
}

.menu-item.is-active {
  display: flex;
  align-items: stretch;
  height: 480px;
  animation: fade 0.4s ease;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-item__image {
  flex: 0 0 45%;
  max-width: 45%;
}

.menu-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--gold);
}

.menu-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3.5rem 2rem 2rem;
}

.menu-item__category {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.menu-item__name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-item__desc {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.menu-item__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Carousel controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(59, 71, 60, 0.7);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--text);
}

.carousel-btn--prev { left: 10px; }
.carousel-btn--next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--text-muted);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.carousel-dot.is-active {
  background: var(--accent);
  opacity: 1;
}

/* About / Reserve */
.about,
.reserve {
  padding: 3rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about p,
.reserve p {
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 0 2rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-real {
  font-family: sans-serif;
  background-color: white;
  text-align: center;
  padding: 1rem;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .hero h2 { font-size: 1.8rem; }

  .menu-item.is-active {
    flex-direction: column;
    height: auto;
  }

  .menu-item__image {
    flex: none;
    max-width: 100%;
  }

  .menu-item__image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
  }

  .carousel-btn { top: 35vw; }
}
