/* --- LL Construction LTD – brand-aligned palette --- */
/* Use this single :root across all pages */
:root{
  /* Brand golds (logo-inspired) */
  --brand:#C89B3C;        /* primary gold */
  --brand-2:#E2B860;      /* lighter gold for gradients/accents */
  --brand-dark:#8A6B22;   /* deeper gold for hovers/active */

  /* Neutral system (logo text = charcoal) */
  --ink:#1A1A1A;          /* primary text */
  --ink-muted:#334155;    /* optional muted text */

  /* Surfaces */
  --bg:#FFFFFF;           /* page background */
  --card:#FBFAF7;         /* warm off-white card (subtle) */
  --ring:#E9D8A6;         /* focus ring in gold family */

  /* Legacy token kept for compatibility */
  --accent:#E2B860;       /* use lighter gold as accent */
}

html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
}
.container{max-width: 1200px}
.shadow-soft{box-shadow: 0 10px 30px rgba(2,6,23,.08)}
.glass{backdrop-filter:saturate(180%) blur(12px); background-color: rgba(255,255,255,0.8)}

/* Brand text & buttons */
.brand{color: var(--brand)}
.btn-brand{
  background: var(--brand);
  color:white;
  border: none;
  border-radius: .6rem;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.btn-brand:hover{background: var(--brand-dark)}
.btn-brand:focus-visible{
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
.btn-brand:active{transform: translateY(1px)}

/* Optional secondary button that matches brand */
.btn-outline-brand{
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand);
  border-radius: .6rem;
}
.btn-outline-brand:hover{
  background: rgba(200,155,60,.08);
  border-color: var(--brand-dark);
}

/* Gold-tinted label chip */
.tag{
  display:inline-flex; align-items:center;
  padding:.25rem .6rem; border-radius:999px; font-size:.75rem;
  background:#FFF7E6;            /* pale gold */
  color:#805B10;                  /* readable on pale gold */
  border:1px solid #F2D59A;       /* soft gold border */
}

/* Hero/slider keeps your layout, dots pick brand */
.slider{position:relative; overflow:hidden}
.slides{display:flex; transition:transform .6s ease}
.slide{min-width:100%; position:relative}
.slide video, .slide img{width:100%; height:560px; object-fit:cover; display:block}

/* Focus the crop toward the TOP of the video */
.slide video{
  object-position: 50% 10%;  /* center horizontally, 10% from top */
}
.dot{width:10px; height:10px; border-radius:9999px; background:#e5e7eb}
.dot.active{background:var(--brand)}

/* Utility: subtle brand gradient for headings, lines, or CTA bars */
.brand-gradient{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 60%, #fff 120%);
}


/* --- Image hover preview + lightbox ------------------------------------- */
#hoverPreview{
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  display: none; z-index: 9999;
  padding: 8px; border-radius: 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(6px);
  box-shadow: 0 10px 30px rgba(2,6,23,.15); /* similar to .shadow-soft */
  border: 1px solid var(--ring);
}
#hoverPreview img{
  max-height: 260px; max-width: 90vw;
  object-fit: contain; border-radius: 8px;
}

#lightbox{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: none; z-index: 10000;
  align-items: center; justify-content: center;
}
#lightbox img{
  max-height: 90vh; max-width: 95vw; object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
#lightboxClose{
  position: absolute; top: 12px; right: 16px;
  font-size: 28px; color: #fff; background: transparent;
  border: none; cursor: pointer;
}

