/* Okanagan Eats — site styles (flex, adaptive) */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800&family=Mukta+Vaani:wght@300;700&display=swap");

:root {
  --ink: #1a1a1a;
  --paper: #f7f4ef;
  --paper-2: #efeae2;
  --accent: #c45c26;
  --accent-dark: #9a3f14;
  --forest: #2f4a3a;
  --muted: #5c5c5c;
  --line: rgba(26, 26, 26, 0.12);
  --white: #fff;
  --max: 1100px;
  --header-h: 72px;
  --font: "Heebo", sans-serif;
  --display: "Mukta Vaani", "Heebo", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.site-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
  opacity: 0.9;
}

.brand img {
  height: 48px;
  width: auto;
}

.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.4rem 0.7rem;
  font-family: var(--font);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* Main */
.site-main {
  flex: 1;
}

.page-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
}

.romlicontainer,
.content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}

.content-wrap h2,
.section-block h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.content-wrap h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.content-wrap p,
.section-block p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.content-wrap ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.content-wrap li {
  margin-bottom: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--ink) center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  animation: fadeUp 0.9s ease both;
}

.hero-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 28em;
  line-height: 1.4;
}

.hero p {
  margin: 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* Sections */
.section-block {
  padding: 3.5rem 0;
}

.section-block.alt {
  background: var(--paper-2);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.section-inner.left {
  text-align: left;
}

.section-meta {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 0.35rem 0;
  color: var(--ink);
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 1.25rem auto;
  border: none;
}

.support-logo {
  max-width: 220px;
  margin: 1rem auto 0;
}

.band-image {
  min-height: 42vh;
  background: var(--forest) center / cover no-repeat;
  position: relative;
}

.band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Gallery / grids */
.media-grid,
.logo-grid,
.vendor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.media-grid a,
.media-grid figure {
  flex: 1 1 280px;
  max-width: 360px;
  margin: 0;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.logo-grid img {
  max-height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2);
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.video-embed {
  flex: 1 1 300px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.two-col > * {
  flex: 1 1 280px;
}

.person-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.person {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.person img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}

.person h3 {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.person p {
  margin: 0;
  font-size: 0.95rem;
}

.columns-list {
  columns: 2;
  column-gap: 2rem;
  text-align: left;
  color: var(--muted);
}

.columns-list li {
  break-inside: avoid;
  margin-bottom: 0.25rem;
}

/* Blog list */
.blog-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.blog-title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.blog-title a {
  color: var(--ink);
}

.blog-preview p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.25rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.romlifooter {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
}

/* Motion */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.7s ease both;
}

.reveal-delay {
  animation-delay: 0.15s;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #141414;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .brand-text {
    display: none;
  }

  .columns-list {
    columns: 1;
  }

  .hero {
    min-height: 72vh;
  }
}
