/* Honey Garden — Refined dark green & black theme */
:root {
  --green-dark: #0c1810;
  --green-mid: #142618;
  --green-soft: #1e3324;
  --green-border: rgba(201, 162, 39, 0.15);
  --black: #080a08;
  --black-soft: #0e120e;
  --cream: #eae6e0;
  --cream-dim: #b8b4ae;
  --gold: #c9a227;
  --gold-soft: #d4b84a;
  --gold-dim: rgba(201, 162, 39, 0.4);
  --white: #f8f6f2;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

h1,
h2,
h3,
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* ----- Header & Hero ----- */
.header {
  min-height: 100vh;
  background:
    linear-gradient(160deg, var(--green-dark) 0%, transparent 50%),
    linear-gradient(180deg, transparent 40%, var(--black) 95%),
    url("https://images.unsplash.com/photo-1551183053-bf91a1d81141?w=1920&q=85")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 30%,
    transparent 40%,
    rgba(8, 10, 8, 0.6) 100%
  );
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: rgba(8, 10, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.14em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero .btn {
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
  border: 2px solid var(--gold);
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-dim);
}

/* ----- Section common ----- */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-sub,
.about-lead {
  text-align: center;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- About ----- */
.about {
  background: var(--green-mid);
}

.about .container {
  max-width: 680px;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--cream);
}

.about p {
  text-align: center;
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ----- Menu ----- */
.menu {
  background: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.menu-card {
  background: var(--green-mid);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--green-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-dim);
}

.menu-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--green-mid) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.menu-card:hover .img-wrap::after {
  opacity: 0.3;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.menu-card:hover img {
  transform: scale(1.06);
}

.menu-card-content {
  padding: 1.5rem;
}

.menu-card-content h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.menu-card-content p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ----- Gallery ----- */
.gallery {
  background: var(--green-mid);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* ----- Contact ----- */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-block {
  background: var(--green-mid);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  text-align: center;
  transition: border-color 0.25s;
}

.contact-block:hover {
  border-color: var(--gold-dim);
}

.contact-block h3 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-block p,
.contact-block a {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-block a {
  text-decoration: none;
  transition: color 0.2s;
}

.contact-block a:hover {
  color: var(--gold);
}

/* ----- Footer ----- */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--green-border);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand .logo {
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.footer-brand p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-legal h4,
.footer-contact h4 {
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: "Source Sans 3", sans-serif;
}

.footer-legal ul {
  list-style: none;
}

.footer-legal li {
  margin-bottom: 0.4rem;
}

.footer-legal a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-contact p,
.footer-meta p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--cream);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-meta {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--green-border);
  font-size: 0.85rem;
  color: var(--cream-dim);
  opacity: 0.9;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 300px;
    background: var(--green-mid);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    border-left: 1px solid var(--green-border);
  }

  .nav-links.open {
    right: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal ul {
    padding: 0;
  }
}
