:root {
  --bp-green: #1f8f3a;
  --bp-green-dark: #12662a;
  --bp-green-soft: #edf8f0;
  --border: #dfe7e2;
  --text: #1f2933;
  --muted: #5b6875;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

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

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.logo {
  height: 48px;
  width: auto;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bp-green);
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(237, 248, 240, 0.9)),
    url("images/hero-store.jpg") center/cover no-repeat;
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--bp-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 12ch;
}

.hero-description,
.page-intro,
.section-heading p,
.feature-text,
.contact-copy,
.card p,
.image-card-content p,
.team-card p,
.menu-card p,
.menu-card li,
.contact-list li {
  color: var(--muted);
}

.hero-description,
.page-intro {
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.hero-highlights,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights {
  margin-top: 24px;
}

.hero-highlights span,
.tag-list span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

/* Buttons */
.btn,
.btn-food,
.btn-vape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  margin-top: 20px;
}

.btn-primary,
.btn-food,
.btn-vape {
  background: var(--bp-green);
  color: var(--white);
}

.btn-primary:hover,
.btn-food:hover {
  background: var(--bp-green-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--bp-green);
  border-color: var(--bp-green);
}

.btn-secondary:hover {
  background: var(--bp-green-soft);
}

.btn-vape:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn-food:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Shared cards */
.hero-card,
.feature-panel,
.contact-card,
.card,
.menu-card,
.image-card,
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.feature-panel,
.contact-card,
.menu-card {
  padding: 28px;
}

.card {
  padding: 26px;
}

.hero-card h2,
.feature-panel h3,
.contact-card h3,
.menu-card h2 {
  margin-bottom: 14px;
}

.hero-card h2 {
  font-size: 1.4rem;
}

.feature-panel h3,
.contact-card h3 {
  font-size: 1.25rem;
}

.menu-card h2 {
  font-size: 1.35rem;
}

.hero-card ul {
  display: grid;
  gap: 12px;
}

.hero-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-green);
}

/* Sections */
.section {
  padding: 78px 0;
}

.section + .section {
  margin-top: 40px;
}

.section-soft {
  background: var(--bp-green-soft);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.left-align {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.feature-grid h2,
.contact-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-contact {
  background: #fafcfb;
}

/* Grids */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.image-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card details */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bp-green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.menu-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  list-style: disc;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--bp-green);
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, var(--bp-green-soft), #ffffff);
}

.notice-bar {
  background: #fdf3d7;
  color: #6d5200;
  font-weight: 700;
  padding: 14px 0;
  border-top: 1px solid #f3e3af;
  border-bottom: 1px solid #f3e3af;
}

/* Images / team */
.image-card,
.team-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.image-card-content {
  padding: 18px;
}

.image-card-content h3,
.team-card h3 {
  margin-bottom: 8px;
}

.image-card-content h3 {
  font-size: 1.1rem;
}

.team-card {
  text-align: center;
  padding-bottom: 20px;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 1.15rem;
}

.team-card p {
  padding: 0 18px;
}

/* Contact / footer */
.contact-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 24px;
}
.map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.site-footer {
  background: #0f3d1b;
  color: rgba(255, 255, 255, 0.88);
  padding: 22px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


/* Carousel */
.carousel-section {
  width: 100%;
  margin: 40px 0;
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  animation: slide 25s infinite;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 40px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1.1rem;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes slide {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 95% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

/* Background image sections */
.section-bg-food,
.section-bg-vape {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.section-bg-food {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/sections/fresh-food-bg.jpg");
}

.section-bg-vape {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/sections/vape-bg.jpg");
}

.section-bg-food p,
.section-bg-vape p {
  color: #f0f0f0;
}

.section-bg-food h2,
.section-bg-vape h2 {
  color: white;
}

/* Keep panels readable on image sections */
.feature-panel,
.feature-panel p {
  color: black;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .cards,
  .menu-grid,
  .image-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-food,
  .btn-vape {
    width: 100%;
  }
}
body {
  overflow-x: hidden;
}