/* Bridge City DJs — fluid, premium, minimal (updated)
   Accent: Deep Teal (#14B8A6)
   Highlight: Champagne (#E7C873)
   Goal: one continuous background + fewer harsh lines
*/

:root{
  /* Core */
  --bg: #0B0F14;
  --bg2:#0A0D12;

  --text:#F6F7FB;
  --muted:#B7C0CF;

  /* Brand colors */
  --accent:#14B8A6;     /* deep teal */
  --highlight:#E7C873;  /* champagne */

  /* Surfaces & lines */
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.035);

  /* softened lines (less “broken up”) */
  --line: rgba(255,255,255,.07);
  --line2: rgba(255,255,255,.12);

  /* Shape */
  --radius: 16px;
  --radius2: 22px;

  /* Layout */
  --max: 1120px;

  /* FX */
  --shadow: 0 18px 50px rgba(0,0,0,.46);
  --shadow2: 0 10px 26px rgba(0,0,0,.22);
  --focus: 0 0 0 3px rgba(20,184,166,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;

  /* ONE continuous ambient background (no hard breaks) */
  background:
    radial-gradient(1600px 1000px at 20% -15%, rgba(20,184,166,.20), transparent 62%),
    radial-gradient(1700px 1100px at 85% 10%, rgba(231,200,115,.10), transparent 66%),
    radial-gradient(1400px 900px at 50% 115%, rgba(255,255,255,.04), transparent 70%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  background-attachment: fixed;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
p{ margin:0 0 14px; color: var(--muted); }
h1,h2,h3{ margin:0 0 10px; line-height: 1.12; letter-spacing: -.2px; }

/* Layout container */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Accessibility: skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius: 10px;
  z-index:9999;
}

/* Topbar / Nav */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.70);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}

.logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  display:grid;
  place-items:center;
  font-weight: 800;
  letter-spacing: .6px;
  box-shadow: var(--shadow2);
}

.brand-title{
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.brand-title strong{
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.brand-title span{
  font-size: 12px;
  color: var(--muted);
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a{
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
}
.navlinks a:hover{
  color: var(--text);
  background: rgba(255,255,255,.03);
  transform: translateY(-1px);
}
.navlinks a.active{
  color: var(--text);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.10);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.085);
}
.btn:focus{
  outline:none;
  box-shadow: var(--focus), var(--shadow2);
}

.btn.primary{
  background: var(--accent);
  border-color: rgba(20,184,166,.55);
  color: #051012;
}
.btn.primary:hover{ filter: brightness(.96); }

.btn.ghost{
  background: transparent;
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.btn.ghost:hover{ background: rgba(255,255,255,.04); }

/* Typography helpers */
.lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}
.note{ font-size: 12px; color: var(--muted); }

/* Hero */
.hero{
  padding: 64px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}
.hero h1{
  font-size: clamp(30px, 4.8vw, 52px);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

/* Kicker / Dot */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
  margin-bottom: 14px;
  width: fit-content;
}
.kicker b{ color: var(--text); }
.kicker .dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(20,184,166,.14);
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Trust chips */
.trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.trust-item{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  background: rgba(0,0,0,.16);
}

/* Hero side card */
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card h3{ font-size: 16px; margin-bottom: 8px; }

.stats{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.stat{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}
.stat .label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--muted);
}
.stat .value{
  font-weight: 700;
  color: var(--text);
}

/* Sections */
.section{ padding: 40px 0; }

.section-head{ margin-bottom: 16px; }
.section-head h2{
  font-size: 24px;
  margin-bottom: 8px;
}
.section-head p{ max-width: 70ch; }

/* Band sections — subtle wash, NO borders */
.band{
  background: rgba(255,255,255,.015);
}

/* Optional banner fade helper (use on your banner section) */
.banner-fade{ position: relative; }
.banner-fade::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--bg));
  pointer-events:none;
}

/* Grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Cards */
.card{
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px;
}
.card.simple{ background: rgba(255,255,255,.02); }
.card h3{ font-size: 16px; margin-bottom: 8px; }
.card p{ margin-bottom: 0; }

/* Lists */
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* push the button to the bottom of the package card */
.price .btn{
  margin-top: auto;
  align-self: center;
}

/* optional: make the button consistent width */
.price .btn{
  min-width: 190px;
}

/* optional: keep lists from crowding the bottom */
.price .list{
  margin-bottom: 14px;
}
.price .tag{
  display:inline-flex;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(0,0,0,.16);
  font-size: 12px;
}
.price.featured{
  border-color: rgba(20,184,166,.40);
  box-shadow: var(--shadow2);
  position: relative;
}
.price.featured::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(20,184,166,.14), transparent 60%);
  pointer-events:none;
}
.price h3{ margin-top: 10px; }
.price .money{
  font-size: 26px;
  font-weight: 800;
  margin: 10px 0;
  color: var(--text);
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

/* Forms */
.form{ display:grid; gap: 12px; }
.field{ display:grid; gap: 6px; }
label{ color: var(--muted); font-size: 13px; }

input, textarea, select{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding: 12px 12px;
  font-size: 14px;
}
input:focus, textarea:focus, select:focus{
  outline:none;
  box-shadow: var(--focus);
  border-color: rgba(20,184,166,.45);
}
textarea{ min-height: 120px; resize: vertical; }

/* CTA band */
.cta{ padding: 44px 0 60px; }
.cta-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, rgba(20,184,166,.14), rgba(255,255,255,.015));
}

/* Footer */
.footer{
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.small{ font-size: 12px; color: var(--muted); }
.footer a{ color: var(--text); border-bottom: 1px dotted rgba(255,255,255,.20); }
.footer a:hover{ border-bottom-color: rgba(231,200,115,.60); }

/* DJ Cards */
.dj-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dj{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.dj .photo{
  height: 170px;
  background:
    radial-gradient(900px 340px at 30% 20%, rgba(20,184,166,.18), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dj .body{ padding: 16px; }
.dj .meta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: var(--muted);
}
/* Logo-only header */
.brand.logo-only{
  display: flex;
  align-items: center;
}

.brand.logo-only img{
  height: 60px;          /* ideal desktop size */
  width: auto;
  display: block;
}

/* Slightly smaller on mobile */
@media (max-width: 600px){
  .brand.logo-only img{
    height: 36px;
  }
}

/* Responsive */
@media (max-width: 920px){
  body{ background-attachment: scroll; } /* avoids iOS weirdness */
  .hero-grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .dj-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items: flex-start; }
}
