
/* src/static/map_styles.css */

.map-embed {
  width: 100%;
  height: 375px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #fff;
}

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

@media (max-width: 576px) {
  .map-embed {
    height: 240px;
    border-radius: 14px;
  }
}
/* Find us text */
.findus-text {
  margin: 0 0 1rem;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.6;
  font-size: 1rem;
}

/* Container holding map + image (mobile-first stacked) */
.findus-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Side-by-side on larger screens */
@media (min-width: 768px) {
  .findus-media {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
}

/* Ensure both panels feel consistent */
.findus-map,
.findus-image {
  min-width: 0; /* prevents overflow in grid */
}

/* Image styling to match map card look */
.findus-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #fff;
}

/* On mobile, keep a defined image height like the map */
@media (max-width: 767.98px) {
  .findus-image img {
    height: 240px;
    border-radius: 14px;
  }
}

/* On desktop, you can match the map height if desired */
@media (min-width: 768px) {
  .findus-image img {
    height: 375px; /* matches .map-embed height */
  }
}

/* Section sub-heading (H3) */
.section-location {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 700;
  letter-spacing: 0.3px;

  color: #0f172a;
  margin-bottom: 0.75rem;
  padding-top: 50px;
}

/* Optional subtle accent line */
.section-location::before {
  content: "";
  width: 6px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, #0d6efd, #2563eb);
}

/* Responsive sizing */
.section-location {
  font-size: 1.35rem;
}

@media (max-width: 576px) {
  .section-location {
    font-size: 1.2rem;
  }
}
/* src/static/home_styles.css */

/* ===== Home hero (no background image version) ===== */
/* IMPORTANT: give the hero a lower stacking order than the navbar */
.home-hero-banner {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;

  /* IMPORTANT: ensure it doesn't tuck under the sticky navbar */
  padding-top: 1.25rem;
}

/* The main panel (text left, shop image right) */
.hero-panel {
  display: grid;

  /* CONTROL IMAGE PANEL WIDTH HERE */
  /* Change the second value to adjust width of the right image panel */
  /* Examples:
     1fr 280px   (narrow)
     1fr 360px   (wider)
     1fr clamp(240px, 28vw, 380px) (responsive)
  */
  grid-template-columns: 1fr clamp(240px, 28vw, 380px);

  gap: 1.25rem;
  align-items: stretch;

  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);

  padding: 1.25rem;
}

/* Text side */
.hero-panel-text {
  padding: 0.25rem 0.25rem;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.1;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.hero-lead {
  font-size: 1.08rem;
  color: #334155;
  margin: 0 0 1rem 0;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0.25rem 0 1rem 0;
}

.hero-features {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #475569;
}

/* Right side image card */
.hero-panel-image {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);

  /* IMPORTANT: keep hero below navbar/dropdowns */
  position: relative;
  z-index: 1;
}

.hero-panel-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.hero-panel-image-caption {
  padding: 0.7rem 0.85rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
}

/* Responsive: stack text above image on mobile */
@media (max-width: 991.98px) {
  .home-hero-banner {
    padding-top: 1rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel-image img {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1rem;
  }
}