:root{
  --bg: #fbf7f2;
  --card: #fff5e6;
  --brown: #6b3e0a;
  --gold: #d4a017;
  --muted: #7b5f44;
  --radius: 12px;
  --maxwidth: 1200px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #fffdfa 100%);
  color: #3b2a15;
  -webkit-font-smoothing:antialiased;
}

/* container (if your template provides .container, keep it; otherwise used here) */
.container{
  max-width: var(--maxwidth);
  margin: 0 auto;
  padding: 18px;
}

/* Hero */
.loc-hero{ text-align:center; margin: 6px 0 18px; }
.loc-title{ font-size:28px; color:var(--brown); margin:8px 0; }
.loc-sub{ color:var(--muted); margin:0 0 18px; font-size:14px; }

/* City heading */
.city-heading{
  font-size:20px;
  color: var(--brown);
  margin: 20px 0 12px;
  padding-left:10px;
  border-left: 6px solid rgba(212,160,23,0.18);
}

/* Grid for cards: 3 columns on wide screens, responsive */
.loc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* fallback: if your page already restricts width, use repeat(auto-fit, minmax(240px,1fr)) */
@media (max-width: 1000px){
  .loc-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .loc-grid{ grid-template-columns: 1fr; }
}

/* Card style (same visual language as videos/testimonials) */
.loc-card{
  background: linear-gradient(180deg, var(--card), #fff);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(226,185,111,0.6);
  box-shadow: 0 12px 28px rgba(107,62,10,0.06);
  display:flex;
  flex-direction:column;
}

/* Map / iframe area */
.loc-card iframe{
  width:100%;
  height:160px;   /* half-size look to match videos */
  border: none;
  display:block;
  background:#000;
}

/* Info area under the map (like video meta) */
.loc-info{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  background: linear-gradient(180deg, rgba(212,160,23,0.03), transparent);
}

.loc-name{
  font-weight:700;
  color: #3b2b1e;
  font-size:16px;
  margin-bottom:4px;
}
.loc-area{
  color: var(--muted);
  font-size:13px;
}

/* GET DIRECTIONS button */
.map-btn{
  background: linear-gradient(180deg, var(--gold), #b68410);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  box-shadow: 0 8px 18px rgba(107,62,10,0.12);
}

/* small spacing between city groups */
.city-group{ margin-bottom: 14px; }

/* make sure headings don't stick to iframe */
.city-heading + .loc-grid { margin-top: 6px; }

/* responsive iframe height for very small screens */
@media (max-width:480px){
  .loc-card iframe{ height:130px; }
  .loc-title{ font-size:22px; }
}
