/* ============================================================
   DUTCH TOUCH GENETICS
   STORES PAGE — FULL FILE
   Scoped to: body.dt-stores-page
============================================================ */


/* ============================================================
   GLOBAL NAV (COPY FROM STRAINS)
============================================================ */

body.dt-stores-page .dt-nav {
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:72px;

  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  padding:0 16px;

  background:var(--nav-bg);
  backdrop-filter:none;
  transition:background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
  z-index:1100;
}

body.dt-stores-page .dt-nav.scrolled {
  background:var(--nav-bg-solid);
  backdrop-filter:blur(8px);
  box-shadow:0 3px 16px rgba(0,0,0,0.55);
}

/* LEFT */
body.dt-stores-page .dt-nav-left {
  display:flex;
  align-items:center;
  gap:12px;
}

body.dt-stores-page .dt-nav-hamburger {
  width:32px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:none;
  border:none;
  cursor:pointer;
}

body.dt-stores-page .dt-nav-hamburger span {
  height:3px;
  width:100%;
  background:#F7F3E9;
  border-radius:4px;
}

/* LOGO */
body.dt-stores-page .dt-nav-logo img {
  height:28px;
}

/* CENTER TEXT */
body.dt-stores-page .dt-nav-text {
  justify-self:center;
  font-family:Cinzel, serif;
  font-weight:700;
  font-size:28px;
  white-space:nowrap;
  color:#E67A00;
  display:none;
}

body.dt-stores-page .dt-nav-text span {
  color:#CDA45A;
}

/* SOCIAL ICONS */
body.dt-stores-page .dt-nav-icons {
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:14px;
}

body.dt-stores-page .dt-nav-icons img {
  width:24px;
  height:24px;
}

@media (min-width:768px) {
  body.dt-stores-page .dt-nav-text { display:block; }
}

/* ============================================================
   MENU OVERLAY
============================================================ */
body.dt-stores-page .dt-menu-overlay {
  position:fixed;
  top:0;
  left:0;
  width:75%;
  max-width:320px;
  height:100%;
  background:#000;

  transform:translateX(-100%);
  opacity:0;
  pointer-events:none;

  transition:transform .45s cubic-bezier(0.25, 0.8, 0.25, 1), opacity .35s ease;

  z-index:3000;
}

body.dt-stores-page .dt-menu-overlay.active {
  transform:translateX(0);
  opacity:1;
  pointer-events:auto;
}

body.dt-stores-page .dt-menu-inner {
  padding:22px 20px;
}

body.dt-stores-page .dt-menu-close {
  background:none;
  border:none;
  color:#fff;
  font-size:42px;
  margin-bottom:16px;
  cursor:pointer;
}

body.dt-stores-page .dt-menu-logo {
  height:42px;
  margin-bottom:20px;
}

body.dt-stores-page .dt-menu-links a {
  display:block;
  font-family:Cinzel, serif;
  font-size:30px;
  margin-bottom:18px;
  opacity:0;
  transform:translateX(-22px);
}

/* Reveal animation when .revealed is applied */
body.dt-stores-page .dt-menu-links a.revealed {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .45s ease, transform .45s ease;
}

/* Gold hover shimmer */
body.dt-stores-page .dt-menu-links a:hover {
  color: #d4af37;
  transition: color .25s ease;
}


/* ============================================================
   HERO
============================================================ */
.dt-stores-hero {
  height: 55vh;
  min-height: 450px;

  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../assets/img/banners/visit-us-hero.jpg') center 25% / cover no-repeat;
  
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 4rem;
}

.stores-title {
  font-family: "Cinzel", serif;
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8); /* Helps text pop against bright spots */
}

.stores-subtitle {
  color: #f7f3e9; /* Brighter than the old grey */
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ============================================================
   STORES GRID
============================================================ */
.dt-stores-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem; /* Changed from 3rem to 1.5rem to pull it up */
  text-align: center;
}

.dt-stores-header h2 {
  font-family: "Cinzel", serif;
  color: #fff;
  margin-bottom: 0.4rem;
}

.dt-stores-header p {
  color: #999;
  margin-bottom: 3rem; /* Gave this a little more breathing room */
}

.stores-grid {
  display: grid;
  /* auto-fit forces them to stretch, max-width keeps them from getting TOO huge */
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem; /* Increased the gap for a premium feel */
  max-width: 1000px; /* Limits the stretch so it looks balanced */
  margin: 0 auto; /* Centers the whole grid */
  text-align: left; /* Keeps the text inside the cards aligned left */
}

.store-card {
  background:#0a0a0a;
  border-radius:14px;
  border:1px solid #1a1a1a;
  overflow:hidden;
  box-shadow:0 0 18px rgba(212,175,55,0.15);
}

/* ============================================================
   STORE CARD IMAGE LINKS & VIBES
============================================================ */
.store-image {
  height: 210px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.store-image:hover {
  opacity: 0.85;
}

/* Green Labs Vibe */
.gl-vibe {
  background: linear-gradient(135deg, #0B7D5A 0%, #052219 100%);
}

/* Dutch Republic Vibe */
.dr-vibe {
  background: linear-gradient(135deg, #111111 0%, #000000 100%);
  border-bottom: 1px solid rgba(214, 163, 74, 0.2);
}

.store-vibe-logo {
  height: 65px;
  object-fit: contain;
  margin-bottom: 15px;
}

.store-vibe-text {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.store-content {
  padding:1.3rem;
}

.store-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:0.6rem;
}

.store-name {
  color:#fff;
  font-family:"Cinzel", serif;
  font-size:1.4rem;
}

.store-tag {
  background:#d4af37;
  color:#000;
  padding:0.25rem 0.6rem;
  border-radius:5px;
  font-size:0.7rem;
  font-weight:700;
}

.store-desc {
  color:#aaa;
  font-size:0.9rem;
  margin-bottom:1rem;
}

.store-location p {
  color:#ccc;
  margin:0;
  font-size:0.85rem;
  line-height:1.35;
}

.store-link {
  display:inline-block;
  margin-top:1rem;
  color:#d4af37;
  font-weight:600;
  text-decoration:none;
  font-size:0.95rem;
}

.store-link:hover {
  text-decoration:underline;
}

/* ============================================================
   FOOTER
============================================================ */

body.dt-stores-page .dt-footer {
  background:#000;
  padding:75px 20px 80px;
  margin-top:80px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.08);
}

body.dt-stores-page .dt-footer-divider {
  width:100%;
  height:2px;
  background:#d4af37;
  margin:0 auto 28px auto;
}

body.dt-stores-page .dt-footer-legal {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:28px;
}

body.dt-stores-page .dt-footer-legal a {
  color:#eee;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.6px;
}

body.dt-stores-page .dt-footer-social {
  display:flex;
  justify-content:center;
  gap:28px;
  margin-bottom:26px;
}

body.dt-stores-page .dt-footer-social img {
  width:26px;
  height:26px;
}

body.dt-stores-page .dt-footer-copy {
  color:#777;
  font-size:13px;
}

/* --- STORES GRID LAYOUT --- */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stacks on mobile */
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .stores-grid {
    grid-template-columns: 1fr 1fr; /* Side-by-side on desktop */
    align-items: stretch;
  }
}

/* --- CLICKABLE TILE FEEDBACK --- */
.store-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-card-link:hover {
  transform: translateY(-8px);
}

.store-card {
  height: 100%; /* Ensures both cards are the same height side-by-side */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}

.store-card-link:hover .store-card {
  border-color: #D6A34A; /* Glows Dutch Gold on hover */
}
