@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --bg: #12100f;
  --surface: #1b1715;
  --surface-2: #241f1c;
  --text: #f8f4ef;
  --muted: #cbbfb3;
  --accent: #c44536;
  --accent-2: #6b8e23;
  --gold: #e0b973;
  --max: 1200px;
  --radius: 14px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  /* SkyBees AI brand (from theskybees.ca / main.css) */
  --sb-slate: #0f172a;
  --sb-slate-2: #111827;
  --sb-honey: #f6e05e;
  --sb-honey-dim: rgba(246, 224, 94, 0.22);
  --sb-text-on-dark: #f8fafc;
  --sb-muted-on-dark: rgba(248, 250, 252, 0.75);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  padding-bottom: 5rem;
  background: radial-gradient(circle at top right, #2a211d 0%, var(--bg) 50%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.4px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(18, 16, 15, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, var(--accent), #d5843f, var(--accent-2), var(--accent));
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #da6f48);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
  background: transparent;
}

.hero {
  min-height: 88vh;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(10, 8, 7, 0.55), rgba(10, 8, 7, 0.72)),
    var(--hero-image) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 75% 25%, rgba(224, 185, 115, 0.2), transparent 38%);
}

.hero-content {
  max-width: 760px;
  padding-block: 4rem;
}

.eyebrow {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.5rem 0 1rem;
}

.lead {
  color: #e6ddd3;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-2);
  margin-bottom: 0.4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0.8rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.chip.active {
  background: rgba(196, 69, 54, 0.25);
  color: #fff;
  border-color: rgba(196, 69, 54, 0.5);
}

.menu-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item img {
  border-radius: 10px;
  width: 120px;
  height: 88px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--gold);
}

.icon-tags {
  font-size: 0.8rem;
  color: var(--muted);
}

.masonry {
  columns: 1;
  column-gap: 0.9rem;
}

.masonry img {
  width: 100%;
  margin: 0 0 0.9rem;
  border-radius: 12px;
  break-inside: avoid;
  cursor: pointer;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.blog-card .card-body {
  min-height: 190px;
}

.form {
  display: grid;
  gap: 0.7rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.7rem 0.85rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.lang-toggle,
.mobile-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.86);
  z-index: 2000;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 90vh;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

/* SkyBees AI — matches theskybees.ca (slate + honey, Nunito Sans) */
.skybees-font,
.skybees-demo-banner,
.skybees-float,
.skybees-card,
.section-skybees {
  font-family: "Nunito Sans", "Inter", system-ui, sans-serif;
}

.skybees-demo-banner {
  background: linear-gradient(90deg, var(--sb-slate-2) 0%, var(--sb-slate) 50%, var(--sb-slate-2) 100%);
  border-bottom: 1px solid rgba(246, 224, 94, 0.35);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  text-align: center;
  color: var(--sb-text-on-dark);
}

.skybees-demo-banner a {
  color: var(--sb-honey);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.skybees-demo-banner a:hover {
  color: #fde68a;
}

.skybees-demo-banner strong {
  color: #fff;
}

.skybees-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--sb-slate);
  color: var(--sb-honey) !important;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.55), 0 0 0 2px rgba(246, 224, 94, 0.45);
  border: 1px solid rgba(246, 224, 94, 0.55);
  max-width: min(92vw, 300px);
  line-height: 1.25;
}

.skybees-float:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
  background: var(--sb-slate-2);
}

.skybees-float .skybees-float-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sb-muted-on-dark);
}

.skybees-card {
  border-radius: var(--radius);
  padding: 1.35rem;
  background: linear-gradient(160deg, var(--sb-slate) 0%, var(--sb-slate-2) 100%);
  border: 1px solid rgba(246, 224, 94, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.skybees-card h3,
.skybees-card h2 {
  margin-top: 0;
  color: var(--sb-text-on-dark);
}

.skybees-card .lead {
  color: var(--sb-muted-on-dark) !important;
}

.skybees-card a:not(.btn) {
  color: var(--sb-honey);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.skybees-card a:not(.btn):hover {
  color: #fde68a;
}

.skybees-card .btn-primary {
  background: var(--sb-honey) !important;
  color: var(--sb-slate) !important;
  font-weight: 800;
}

.skybees-card .btn-primary:hover {
  filter: brightness(1.05);
}

.skybees-card .feature {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(246, 224, 94, 0.15);
}

.skybees-card .feature strong {
  color: var(--sb-honey);
}

.skybees-card .feature .muted,
.skybees-card .muted {
  color: var(--sb-muted-on-dark) !important;
}

.skybees-eyebrow {
  color: var(--sb-honey);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.skybees-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--sb-muted-on-dark);
  line-height: 1.55;
}

.skybees-list li {
  margin-bottom: 0.35rem;
}

.skybees-list strong {
  color: var(--sb-honey);
}

.skybees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.skybees-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--sb-honey-dim);
  color: var(--sb-slate);
  border: 1px solid rgba(246, 224, 94, 0.45);
}

.nav-external {
  color: var(--sb-honey) !important;
  font-weight: 700;
}

.nav-external:hover {
  background: rgba(246, 224, 94, 0.12) !important;
  color: #fff !important;
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switch:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.section-skybees {
  padding: 3.5rem 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(246, 224, 94, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.35), transparent);
  border-top: 1px solid rgba(246, 224, 94, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.3);
}

.skybees-disclaimer {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.skybees-disclaimer strong {
  color: #e7d9c8;
}

/* Instagram feed embed slot (third-party iframe or script goes inside) */
.instagram-feed-block {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-feed-block h3 {
  margin-top: 0;
}

/* Tuscolo venue / exterior feature */
.venue-photo-feature {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.venue-photo-feature img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.venue-photo-feature figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bees Bot — SkyBees chat widget */
.bees-bot-wrap {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1490;
  font-family: "Nunito Sans", "Inter", system-ui, sans-serif;
}

.bees-bot-trigger {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  border: 3px solid rgba(246, 224, 94, 0.75);
  background: radial-gradient(circle at 50% 45%, #fef9c3 0%, #fde047 35%, var(--sb-slate) 70%);
  color: var(--sb-honey);
  cursor: pointer;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.55), 0 0 0 1px rgba(246, 224, 94, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: bees-bot-pulse 2.8s ease-in-out infinite;
}

.bees-bot-trigger:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.65), 0 0 0 2px rgba(246, 224, 94, 0.45);
}

.bees-bot-trigger:focus-visible {
  outline: 3px solid var(--sb-honey);
  outline-offset: 3px;
}

/* Fill circle: PNGs often have padding; scale + cover clips to the button edge */
.bees-bot-trigger-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 135%;
  height: 135%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

@keyframes bees-bot-pulse {
  0%,
  100% {
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.55), 0 0 0 1px rgba(246, 224, 94, 0.2);
  }
  50% {
    box-shadow: 0 10px 40px rgba(246, 224, 94, 0.25), 0 0 0 1px rgba(246, 224, 94, 0.5);
  }
}

.bees-bot-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(calc(100vw - 2rem), 380px);
  max-height: min(82vh, 580px);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--sb-slate) 0%, var(--sb-slate-2) 100%);
  border: 1px solid rgba(246, 224, 94, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  pointer-events: none;
}

.bees-bot-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.bees-bot-panel-header {
  padding: 1rem 2.75rem 0.75rem 1rem;
  border-bottom: 1px solid rgba(246, 224, 94, 0.15);
  background: radial-gradient(ellipse 120% 80% at 0% 0%, rgba(246, 224, 94, 0.12), transparent 55%);
}

.bees-bot-panel-header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.bees-bot-panel-header h2 .bees-bot-emoji {
  font-size: 1.35rem;
  line-height: 1;
}

.bees-bot-panel-header p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--sb-muted-on-dark);
  line-height: 1.45;
}

.bees-bot-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.bees-bot-close:hover {
  background: rgba(246, 224, 94, 0.2);
  color: var(--sb-honey);
}

.bees-bot-list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.85rem 1rem;
}

.bees-bot-item {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 0.25rem;
  transition: background 0.15s ease;
}

.bees-bot-item:hover {
  background: rgba(246, 224, 94, 0.06);
}

.bees-bot-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  background: var(--sb-honey-dim);
  color: var(--sb-slate);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 224, 94, 0.4);
}

.bees-bot-item strong {
  display: block;
  color: var(--sb-honey);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.bees-bot-item span {
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.45;
}

.bees-bot-footer {
  padding: 0 1rem 1rem;
}

.bees-bot-footer a {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--sb-honey);
  color: var(--sb-slate) !important;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none !important;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.bees-bot-footer a:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bees-bot-hint {
  font-size: 0.68rem;
  color: rgba(248, 250, 252, 0.45);
  text-align: center;
  margin: 0.5rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .bees-bot-trigger {
    animation: none;
  }

  .bees-bot-panel {
    transition: none;
  }
}

@media (max-width: 850px) {
  .bees-bot-wrap {
    left: 0.65rem;
    bottom: 5.5rem;
  }

  .skybees-float {
    right: 0.65rem;
    bottom: 0.65rem;
    font-size: 0.78rem;
  }
}

@media (min-width: 700px) {
  .masonry {
    columns: 2;
  }
}

@media (min-width: 980px) {
  .masonry {
    columns: 3;
  }
}

@media (max-width: 850px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item img {
    width: 100%;
    height: 170px;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 73px;
    background: rgba(19, 17, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
