/* GarageGuys Cleanouts — site-wide overrides */

:root {
  --gg-navy: #0f172a;
  --gg-navy-2: #1e293b;
  --gg-orange: #f97316;
  --gg-orange-dark: #ea580c;
}

html { scroll-behavior: smooth; }

body { font-family: "Work Sans", system-ui, sans-serif; }
h1, h2, h3, h4, .font-heading { font-family: "Inter", system-ui, sans-serif; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.fill {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* Hero photo placeholder — swap background-image for a real garage/junk-removal photo */
.gg-hero-photo {
  background:
    linear-gradient(120deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.65) 55%, rgba(15,23,42,0.35) 100%),
    radial-gradient(circle at 80% 30%, rgba(249,115,22,0.25), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  background-size: cover;
  background-position: center;
}

/* Before/after placeholder treatment */
.gg-photo-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(15,23,42,0.05) 0 12px, rgba(15,23,42,0.02) 12px 24px),
    #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sticky mobile CTA — leave room at the bottom of every page on mobile */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}

/* Services dropdown */
.gg-dropdown { position: relative; }
.gg-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}
.gg-dropdown:hover .gg-dropdown-menu,
.gg-dropdown:focus-within .gg-dropdown-menu,
.gg-dropdown.open .gg-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gg-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #0f172a;
  font-weight: 500;
}
.gg-dropdown-menu a:hover { background: #f1f5f9; color: #0f172a; }

/* Mobile menu */
.gg-mobile-menu { display: none; }
.gg-mobile-menu.open { display: block; }

/* Buttons */
.gg-btn-primary {
  background: var(--gg-orange);
  color: white;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.gg-btn-primary:hover { background: var(--gg-orange-dark); box-shadow: 0 10px 24px rgba(249,115,22,0.4); }
.gg-btn-primary:active { transform: translateY(1px); }

.gg-btn-secondary {
  background: white;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid white;
  transition: background .15s, color .15s;
}
.gg-btn-secondary:hover { background: transparent; color: white; }

.gg-btn-ghost {
  background: transparent;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #0f172a;
  transition: background .15s, color .15s;
}
.gg-btn-ghost:hover { background: #0f172a; color: white; }

/* FAQ */
details.gg-faq { border-bottom: 1px solid #e2e8f0; }
details.gg-faq > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #0f172a;
}
details.gg-faq > summary::-webkit-details-marker { display: none; }
details.gg-faq > summary::after {
  content: "＋";
  font-size: 24px;
  color: var(--gg-orange);
  transition: transform .2s;
}
details.gg-faq[open] > summary::after { content: "−"; }
details.gg-faq > div { padding-bottom: 20px; color: #475569; line-height: 1.6; }
