/* /css/site.css */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root{
  --accent:#00ff88;
  --text:#0a0a0a;
  --text-muted:#6b7280;
  --text-on-gray:#fff;
  --ring:rgba(0,0,0,.08);
  --shadow-card:0 18px 50px rgba(2,6,23,.06);
  --shadow-item:0 8px 22px rgba(2,6,23,.05);
  --shadow-item-hover:0 16px 40px rgba(2,6,23,.10);
  --headline-font:'Oswald',sans-serif;
}

body{
    font-family: 'Space Grotesk', 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.brand{font-family:var(--headline-font);}

.hero-business-title {
  font-family: var(--headline-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-on-gray);
  margin: 0;
}

.ranking-badge{background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;font-weight:500;letter-spacing:.025em;}
.btn-primary{background:linear-gradient(135deg,#1e293b,#334155);transition:background .3s,box-shadow .3s;}
.btn-primary:hover{background:linear-gradient(135deg,#0f172a,#1e293b);box-shadow:0 4px 12px rgba(30,41,59,.2);}
.btn-secondary{border:1.5px solid #e2e8f0;transition:border-color .3s,background .3s;}
.btn-secondary:hover{border-color:#6366f1;background:rgba(99,102,241,.05);}
.place-card,.service-card{background:#fff;border:1px solid rgba(0,0,0,.08);transition:.3s;text-align:left;}
.place-card:hover,.service-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(0,0,0,.1);border-color:#6366f1;background:#fff;}
.place-card>.flex{flex-direction:column;gap:0;}
.place-card>.flex>img{width:100%;height:10rem;object-fit:cover;border-radius:.5rem;margin-bottom:1rem;}
.place-card>.flex>.flex-1{width:100%;}

/* --- unified surfaces (reuse anywhere) --- */
.panel{
  background:#fff;
  border:1px solid var(--ring);
  border-radius:1.25rem;              /* ~ rounded-2xl */
  box-shadow:var(--shadow-card);      /* consistent section shadow */
}

.card{
  background:#fff;
  border:1px solid var(--ring);
  border-radius:.75rem;                /* ~ rounded-xl */
  box-shadow:var(--shadow-item);       /* consistent item shadow */
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-item-hover);
}

/* dark hero gradient overlay used on all pages */
.hero-overlay{
  background:linear-gradient(135deg,
    rgba(15,23,42,.90) 0%,
    rgba(30,41,59,.85) 50%,
    rgba(51,65,85,.80) 100%);
}

/* ------badges shown on the Happy-Hour hero ----------- */
.info-badge{
  display:inline-flex;
  align-items:center;
  font-size:0.75rem;          /* text-xs */
  font-weight:600;
  padding:0.35rem 0.75rem;    /* px-3 py-1 */
  border-radius:9999px;       /* full pill */
  color:#fff;

  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.25);

  transition:transform .3s cubic-bezier(.4,0,.2,1),
  box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.info-badge:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(0,0,0,.25);
}

/* --- People Section --------------------------- */

.people-band > .max-w-4xl {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
}

@media (min-width: 768px) {
  .people-band > .max-w-4xl { 
    padding: 4rem 3rem; 
  }
}

/* Clean, minimal heading */
.people-title {
  text-align: center;
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  margin-bottom: 2rem;
}

/* Refined body copy */
.people-lede p {
  color: #4a5568;
  font-size: 1.1875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Subtle drop cap */
.people-lede p:first-child::first-letter {
  font-family: var(--headline-font);
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 3.75rem);
  line-height: 1;
  float: left;
  margin: 0.125rem 0.5rem 0 0;
  color: #2d3748;
}

/* Clean, minimal callout cards */
.people-point {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #2d3748;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.people-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.8);
}

/* Grid spacing for the callout points */
.people-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .people-points-grid {
    gap: 1.5rem;
  }
  
  .people-point {
    padding: 1.75rem 2rem;
    font-size: 1.0625rem;
  }
}

/* --------Comparison Section------------------------ */
.comparison-section{
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.comparison-table-wrapper{
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}
.comparison-table{
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td{
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.05);
  vertical-align: top;
}
.comparison-table th{
  background: #f8fafc;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 2px solid rgba(0,0,0,.1);
  position: relative;
}
.comparison-table th:first-child,
.comparison-table td:first-child{
  text-align: left;
  background: #fafafa;
  font-weight: 500;
}
.featured-badge{
  background: #22c55e;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 9999px;
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.check-mark{ color:#22c55e; font-weight:700; margin-right:.35rem; }

/* ===== Why it stands out (rows; icon + title on one line) ===== */

.standout-section{ margin-top:3rem; }

/* one card per row with vertical spacing */
.standout-list{
  display:block;          /* or: display:grid; grid-template-columns:1fr; */
}
.standout-list > .standout-item + .standout-item{ margin-top:1rem; }

/* card layout */
.standout-item{
  /* layout: icon + title on same line, description below */
  display:grid;
  grid-template-columns: 2.75rem 1fr;   /* icon column + text column */
  grid-auto-rows:auto;
  column-gap:1rem;
  align-items:center;

  /* visual style (keep consistent with your theme) */
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border:1px solid rgba(0,0,0,.06);
  border-radius:1.25rem;
  padding:1.5rem;
  box-shadow:0 8px 25px rgba(2,6,23,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.standout-item:hover{
  transform: translateY(-2px);
  box-shadow:0 12px 30px rgba(2,6,23,.10);
}

/* let children of .standout-head participate directly in the grid */
.standout-head{ display:contents; }

/* grid placement */
.standout-icon{
  grid-column:1; grid-row:1 / span 2;   /* spans title + desc */
  width:2.5rem; height:2.5rem; flex-shrink:0;
  border-radius:.75rem;
  background:linear-gradient(135deg,#64748b,#475569);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(100,116,139,.25);
}
.standout-icon svg{ width:1.25rem; height:1.25rem; color:#fff; }

.standout-title{
  grid-column:2; grid-row:1;
  margin:0;
  font-size:1.1rem; font-weight:700; color:#1e293b;
}
.standout-desc{
  grid-column:2; grid-row:2;
  margin:.25rem 0 0 0;
  color:#64748b; line-height:1.7; font-size:1rem;
}

/* optional: tighter spacing on small screens */
@media (max-width:640px){
  .standout-item{ padding:1.25rem; }
}

/* === Upscale accent touches ===================================== */

/* 1) Section heading accent (People / Order / Compare / Standout) */
.people-title::after{
  content:"";
  display:block;
  width:72px;
  height:3px;
  margin:14px auto 0;
  border-radius:9999px;
  background:linear-gradient(90deg,#6366f1,#8b5cf6 60%,var(--accent));
  opacity:.9;
}

/* 2) Panel top hairline (unify panels visually) */
.panel{
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:2px;
  background:linear-gradient(90deg,#6366f1,#8b5cf6 60%,var(--accent));
  opacity:.45;
}

/* 3) Refined link underline inside article prose */
.prose a{
  text-decoration:none;
  background-image:linear-gradient(90deg,#6366f1,#8b5cf6 60%,var(--accent));
  background-size:100% 2px;
  background-position:0 100%;
  background-repeat:no-repeat;
  transition:background-size .2s ease;
}
.prose a:hover{
  background-size:100% 3px;
}

/* 4) Comparison table — featured column gets a gentle win state */
.featured-column{
  position:relative;
  background:linear-gradient(0deg,rgba(34,197,94,.06),rgba(34,197,94,.03)) !important;
  box-shadow:inset 0 0 0 1.5px rgba(34,197,94,.22);
}

/* Micro-interaction polish on icon tile */
.standout-item:hover .standout-icon{
  box-shadow:0 6px 16px rgba(100,116,139,.30),
             inset 0 0 0 1.5px rgba(99,102,241,.55);
}
.standout-icon{
  box-shadow:0 4px 12px rgba(100,116,139,.25),
             inset 0 0 0 1.5px rgba(99,102,241,.35);
}
