/* Reno Page – Local Styling */

.reno-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    color: #fff;
  }
  
  .reno-hero__bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.15)),
      url('/assets/installs/reno-vending-machines.jpeg') center/cover no-repeat;
  }
  
  .reno-hero__content {
    position: relative;
    max-width: 780px;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  
  /* Services */
  .reno-services h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    background: var(--surface-2);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
  }
  
  .service-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: .75rem;
  }
  
  /* Map */
  .reno-map-section {
    margin-top: 4rem;
  }
  
  #renoMap {
    height: 420px;
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 14px;
    overflow: hidden;
  }
  
  /* Local Proof */
  .reno-local ul {
    max-width: 720px;
    margin: 1.5rem auto 0;
    list-style: none;
    padding: 0;
  }
  
  .reno-local li {
    padding: .75rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  
  /* Contact */
  .reno-contact {
    text-align: center;
    margin: 4rem auto;
  }
  
  .contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  
  /* === HERO BLUR PANEL (Reno) === */
.reno-hero__content {
  position: relative;
}

.reno-hero__panel {
  max-width: 720px;
  padding: 2.75rem 3rem;
  border-radius: 18px;

  background: rgba(10, 10, 12, 0.48);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Headline tuning */
.reno-hero__panel h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Body copy tuning */
.reno-hero__panel p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
}

/* Button alignment inside panel */
.reno-hero__panel .hero-actions {
  margin-top: 0;
}

/* Mobile refinement */
@media (max-width: 640px) {
  .reno-hero__panel {
    padding: 2rem 1.75rem;
    border-radius: 16px;
  }
}



/* === Reno Page – Text Color Refinement (Append Only) === */
/* Aligned to core light (white) + dark (navy) themes */

/* -----------------------------------------------------
   Base text tuning (inherits from core variables)
----------------------------------------------------- */
.reno-hero {
  color: var(--clr-text-dark);
}

.reno-services,
.reno-map-section,
.reno-local,
.reno-contact {
  color: var(--clr-text);
}

/* -----------------------------------------------------
   Hero panel (works on image + dark overlay)
----------------------------------------------------- */
.reno-hero__panel {
  color: var(--clr-text-dark);
}

.reno-hero__panel h1 {
  color: #f8fafc; /* slightly brighter than --clr-text-dark for hero emphasis */
}

.reno-hero__panel p {
  color: #cbd5e1; /* readable on dark overlay, not glowing */
}

.reno-hero__panel strong {
  color: var(--clr-secondary);
}

/* -----------------------------------------------------
   Section headings (light + dark mode safe)
----------------------------------------------------- */
.reno-services h2,
.reno-map-section h2,
.reno-local h2,
.reno-contact h2 {
  color: var(--clr-text);
}

:root[data-theme="dark"] .reno-services h2,
:root[data-theme="dark"] .reno-map-section h2,
:root[data-theme="dark"] .reno-local h2,
:root[data-theme="dark"] .reno-contact h2 {
  color: var(--clr-text-dark);
}

/* Subtle underline accent */
.reno-services h2::after,
.reno-map-section h2::after,
.reno-local h2::after {
  content: "";
  display: block;
  width: auto;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  background-color: var(--clr-primary);
}

/* -----------------------------------------------------
   Service cards
----------------------------------------------------- */
.service-card h3 {
  color: var(--clr-text);
}

.service-card p {
  color: #4b5563; /* softer than body text for light mode */
}

:root[data-theme="dark"] .service-card h3 {
  color: var(--clr-text-dark);
}

:root[data-theme="dark"] .service-card p {
  color: #cbd5e1;
}

.service-card i {
  color: var(--clr-primary);
}

/* -----------------------------------------------------
   Local proof list
----------------------------------------------------- */
.reno-local li {
  color: var(--clr-text);
}

.reno-local li strong {
  color: var(--clr-primary-dark);
}

:root[data-theme="dark"] .reno-local li {
  color: var(--clr-text-dark);
}

:root[data-theme="dark"] .reno-local li strong {
  color: var(--clr-secondary);
}

/* -----------------------------------------------------
   Map & contact body copy
----------------------------------------------------- */
.reno-map-section p,
.reno-contact p {
  color: #4b5563;
}

:root[data-theme="dark"] .reno-map-section p,
:root[data-theme="dark"] .reno-contact p {
  color: #cbd5e1;
}

/* -----------------------------------------------------
   Button text clarity (no bg changes)
----------------------------------------------------- */
.btn-primary {
  color: #ffffff;
}

.btn-secondary {
  color: var(--clr-primary);
}

:root[data-theme="dark"] .btn-secondary {
  color: #93c5fd;
}


/* === Reno Page – Fine Detail Polish (Append Only) === */
/* Micro-contrast, hierarchy, and subtle UX refinements */

/* -----------------------------------------------------
   Global rhythm & text smoothing
----------------------------------------------------- */
.reno-services,
.reno-map-section,
.reno-local,
.reno-contact {
  text-rendering: optimizeLegibility;
}

/* Slightly tighten headings for a more “engineered” feel */
.reno-services h2,
.reno-map-section h2,
.reno-local h2,
.reno-contact h2 {
  letter-spacing: -0.015em;
}

/* -----------------------------------------------------
   Hero micro-details
----------------------------------------------------- */
.reno-hero__panel h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.reno-hero__panel p {
  max-width: 58ch;
}

/* Soft divider below hero copy */
.reno-hero__panel p::after {
  content: "";
  display: block;
  width: auto;
  height: 2px;
  margin-top: 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
}

/* -----------------------------------------------------
   Service cards – depth & clarity
----------------------------------------------------- */
.service-card {
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Icon breathing room + consistency */
.service-card i {
  display: inline-block;
  margin-bottom: 0.85rem;
}

/* -----------------------------------------------------
   Section separators
----------------------------------------------------- */
.reno-services,
.reno-local,
.reno-contact {
  padding-top: 4rem;
}

.reno-services {
  padding-bottom: 4.5rem;
}

/* -----------------------------------------------------
   Local proof list refinement
----------------------------------------------------- */
.reno-local ul {
  border-top: 1px solid var(--clr-border);
}

.reno-local li {
  font-size: 0.95rem;
}

.reno-local li:last-child {
  border-bottom: none;
}

/* -----------------------------------------------------
   Map container polish
----------------------------------------------------- */
#renoMap {
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

/* -----------------------------------------------------
   Contact CTAs
----------------------------------------------------- */
.contact-actions a {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* -----------------------------------------------------
   Dark-mode micro adjustments
----------------------------------------------------- */
:root[data-theme="dark"] .service-card {
  border-color: #1f2937;
}

:root[data-theme="dark"] .reno-local ul {
  border-top-color: #1f2937;
}

:root[data-theme="dark"] .reno-hero__panel p::after {
  background-color: rgba(255, 255, 255, 0.12);
}











/* Buttons wrapper */
.contact-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Base button style */
.contact-cta__btn {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Icon styling */
.contact-cta__btn i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

/* Hover icon shift */
.contact-cta__btn:hover i {
  transform: translateX(4px) rotate(5deg);
}

/* Call button */
.contact-cta__btn--call {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.contact-cta__btn--call:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

/* Email button */
.contact-cta__btn--email {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.contact-cta__btn--email:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

/* Info / hours text below button */
.contact-cta__hours {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  display: block;
  color: #f9fafb;
}

/* Animated gradient shine */
.contact-cta__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.contact-cta__btn:hover::before {
  left: 125%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-cta__buttons {
    gap: 1rem;
  }

  .contact-cta__btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-cta__hours {
    color: #f3f4f6;
  }
}


/* =====================================================
   HERO CTA BUTTONS
   Aligned with Contact CTA design language
===================================================== */

.hero-actions--cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Base hero CTA */
.hero-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;

  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  min-width: 220px;

  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}

/* Icon row alignment */
.hero-cta i {
  font-size: 1.15rem;
  margin-right: 0.35rem;
}

/* Subtext */
.hero-cta__sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.2;
}

/* Primary hero CTA (blue, matches call CTA energy) */
.hero-cta--primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.hero-cta--primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.55);
}

/* Secondary hero CTA (neutral, phone-first) */
.hero-cta--secondary {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-cta--secondary:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

/* Subtle shine, shared philosophy with contact CTAs */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-cta:hover::before {
  opacity: 1;
}

/* Mobile stacking */
@media (max-width: 640px) {
  .hero-actions--cta {
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }
}

/* =====================================================
   Center Hero CTAs within hero panel
===================================================== */

/* Center the button group itself */
.hero-actions--cta {
  justify-content: center;
}

/* Center-align content inside each button */
.hero-cta {
  align-items: center;
  text-align: center;
}


/* =====================================================
   Reno Local Points – Feature Cards
===================================================== */

.local-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.local-point-card {
  background: var(--surface-2);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.local-point-card i {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 0.85rem;
}

.local-point-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--clr-text);
}

.local-point-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
}

.local-point-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: rgba(59, 130, 246, 0.05); /* subtle hover highlight */
}

/* Dark mode adjustments */
:root[data-theme="dark"] .local-point-card {
  background: #1f2937;
  border-color: #374151;
}

:root[data-theme="dark"] .local-point-card p {
  color: #cbd5e1;
}

:root[data-theme="dark"] .local-point-card:hover {
  background: rgba(59, 130, 246, 0.15);
}

/* Responsive refinement */
@media (max-width: 640px) {
  .local-points-grid {
    gap: 1.25rem;
  }

  .local-point-card {
    padding: 1.5rem 1.25rem;
  }
}


/* =====================================================
   Reno Contact Section – Spacing & Subtle Details
===================================================== */

.reno-contact {
  text-align: center;
  margin: 5rem auto; /* slightly more vertical breathing room */
  padding: 2rem 1rem;
  position: relative;
}

/* Section heading */
.reno-contact h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--clr-text);
  letter-spacing: -0.015em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Body copy */
.reno-contact p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #4b5563;
  line-height: 1.65;
}

/* Subtle horizontal divider */
.reno-contact p::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 1.75rem auto 0;
  border-radius: 2px;
  background-color: var(--clr-primary);
  opacity: 0.6;
}

/* Buttons wrapper */
.contact-cta__buttons {
  justify-content: center; /* center the buttons */
  gap: 1.75rem; /* slightly more breathing room */
  flex-wrap: wrap;
}

/* Individual CTA adjustments */
.contact-cta__btn {
  padding: 1.15rem 2.4rem; /* slightly taller & wider */
  min-width: 240px;
  font-size: 1rem;
  line-height: 1.35;
}

/* CTA icon spacing */
.contact-cta__btn i {
  margin-right: 0.5rem;
}

/* Subtext spacing */
.contact-cta__hours {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Mobile refinement */
@media (max-width: 640px) {
  .reno-contact p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-cta__buttons {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}


