/* FILE: /public_html/assets/css/styles.css
   PURPOSE: Site styling (Bootstrap handles base UI)
*/

/* ===== Base ===== */
:root{
  --navy:#0b1320;
  --navy2:#0f1e33;
  --gold:#d7b46a;
  --ink:#0e1525;
}

body{
  padding-top: 72px;
  background: #f6f7fb;
}

.small-muted { color: #6c757d; font-size: 0.95rem; }
.badge-status { font-size: 0.85rem; }
.table td, .table th { vertical-align: middle; }

/* Navbar theme */
.navbar-dark.bg-dark{
  background: linear-gradient(90deg, var(--navy) 0%, #111a2a 60%, #0a1220 100%) !important;
}

/* ===== Flyer-inspired Homepage (use these classes in index.php) ===== */
.brand-divider{
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(215,180,106,.9), transparent);
  margin: 12px 0 18px;
}

/* Hero container */
.hero-wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  background: #fff;
}

/* Hero layout: image + panel */
.hero-split2{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0;
}

.hero-media{
  min-height: 420px;
  background: var(--navy);
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right hero panel */
.hero-panel2{
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
  color: #fff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-kicker{
  color: rgba(215,180,106,.95);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}

.hero-h1{
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.10;
  margin: 10px 0 10px;
}

.hero-p{
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  margin: 0 0 14px;
}

.hero-glass{
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  padding: 14px;
}

.checklist{
  margin: 0;
  padding-left: 1.05rem;
}

.checklist li{
  margin: 8px 0;
  color: rgba(255,255,255,.92);
}

.checklist li::marker{ color: var(--gold); }

/* Buttons */
.btn-gold{
  background: var(--gold);
  border-color: var(--gold);
  color: #1a2233;
  font-weight: 800;
}

.btn-gold:hover{ filter: brightness(.95); }

/* Bands like flyer */
.band{
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e9ecef;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.band-dark{
  background: linear-gradient(180deg, #0f1e33 0%, #0b1320 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
}

.band-title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.muted-on-dark{ color: rgba(255,255,255,.82); }

.icon-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card{
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .hero-split2{ grid-template-columns: 1fr; }
  .hero-media{ min-height: 260px; }
  .icon-row{ grid-template-columns: 1fr; }
}