/* ============================================
   Pro Cabinets of Central Florida LLC
   Final Theme — Warm Sage + Sand + Blue
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');

/* Color Palette */
:root {
  --sage-light: #dde5dc;
  --sage: #b7c9b3;
  --soft-sand: #e8dfd3;
  --blue-soft: #b5cde0;
  --blue-mid: #7faacc;
  --text-dark: #2a2a2a;
  --bg: #ffffff;
  --panel: #f8fafc;
  --muted: #5b6678;
  --border: #c5cbc8;
}

/* Base */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  scroll-behavior: smooth;
}
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Full-width banner */
.brand-banner {
  width: 100%;
  height: 220px;
  background: linear-gradient(120deg, var(--sage-light) 0%, var(--soft-sand) 40%, var(--blue-soft) 100%);
  border-bottom: 3px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.brand-banner img {
  height: 100%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  display: block;
}

/* Quicklinks (chips) bar */
.quicklinks {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}
.quicklinks-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.spacer { flex: 1 1 auto; min-width: 8px; }

.chip {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 22px;
  background: linear-gradient(120deg, var(--sage-light), var(--soft-sand));
  border: 2px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}
.chip:hover {
  background: linear-gradient(120deg, var(--blue-soft), var(--blue-mid));
  color: #fff;
  transform: translateY(-2px);
}
.chip--quote {
  background: linear-gradient(120deg, var(--blue-soft), var(--blue-mid));
  color: #fff;
  border-color: var(--blue-mid);
}

/* Buttons (CTAs) */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--border);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
.btn.solid {
  background: linear-gradient(120deg, var(--sage), var(--soft-sand));
  color: var(--text-dark);
}
.btn.ghost {
  background: #fff;
  color: var(--sage);
}
.btn:hover {
  background: linear-gradient(120deg, var(--blue-soft), var(--blue-mid));
  color: #fff;
  transform: translateY(-2px);
}

/* Page background image area (between banner and footer) */
.page-bg {
  --bg-img: url('./assets/hero-background.jpg'); /* replace with your image */
  background: var(--bg-img) center top / cover no-repeat fixed;
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Hero */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}
.hero h1 { font-size: 40px; margin: 0 0 10px; }
.hero p  { color: var(--muted); font-size: 16px; max-width: 60ch; }
.hero-cta{ margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats */
.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: background 0.3s ease;
}
.stat:hover { background: linear-gradient(120deg, var(--soft-sand), var(--blue-soft)); }
.stat-num   { font-size: 28px; font-weight: 800; color: var(--blue-mid); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* Sections */
.band { padding: 42px 0; }
.band.alt {
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
h2 { margin: 0 0 18px; font-size: 28px; }
.grid { display: grid; gap: 16px; }
.grid.two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Cards / Media */
.card{ background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.video-thumb{ position:relative; display:block; }
.video-thumb img{ width:100%; display:block; }
.play{ position:absolute; right:12px; bottom:12px; background:#fff; border:1px solid var(--border); padding:8px 10px; border-radius:10px; font-weight:800; }

/* Footer */
.footer {
  background: linear-gradient(120deg, var(--sage-light), var(--soft-sand), var(--blue-soft));
  border-top: 3px solid var(--border);
  color: var(--text-dark);
  padding: 28px 0;
}
.footer-inner{ display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer a{ color: var(--text-dark); text-decoration:none; font-weight:600; }
.footer a:hover{ color: var(--blue-mid); }
.copyright{ text-align:center; padding:12px 0; color:#333; border-top:1px solid var(--border); }

/* Mobile Responsive */
@media (max-width: 768px){
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-card  { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* Mobile hamburger for quicklinks */
.menu-toggle{
  display:none; /* hidden on desktop */
  align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:10px;
  border:2px solid var(--border); background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  margin-right:10px;
}
.menu-toggle span{
  display:block; width:22px; height:2px; background:var(--text-dark);
  margin:3px 0; transition:transform .25s ease, opacity .2s ease;
}

/* transform to X when open */
.quicklinks.open .menu-toggle span:nth-child(1){ transform:translateY(5px) rotate(45deg); }
.quicklinks.open .menu-toggle span:nth-child(2){ opacity:0; }
.quicklinks.open .menu-toggle span:nth-child(3){ transform:translateY(-5px) rotate(-45deg); }

/* Mobile layout for chip list */
@media (max-width: 768px){
  .quicklinks-inner{ justify-content:flex-start; gap:10px; }
  .menu-toggle{ display:flex; }

  /* collapse links by default */
  #ql-list{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  /* expand when nav is open */
  .quicklinks.open #ql-list{ max-height:320px; }

  /* move right-side CTAs to next row on mobile */
  .nav-right{
    width:100%;
    display:flex;
    gap:10px;
    margin-top:8px;
    flex-wrap:wrap;
  }

  /* slightly smaller chips on mobile */
  .chip{ padding:9px 14px; border-radius:20px; }
}
