/* =========================================================
   OFDA Placeholder Site
   - Bootstrap 5 + minimal custom styling
   - Keep all custom styling here (no inline styles)
   ========================================================= */

:root{
  --bg: #252224;          /* deep charcoal */
  --bg-2: #2d292c;        /* slightly lighter surface */
  --gold: #f3ddb1;        /* primary accent */
  --gold-2: #b7aa93;      /* muted gold */
  --line: #7c715e;        /* line/border */
  --muted: #b7aa93;

  --radius: 1.25rem;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}

html, body{
  height: 100%;
}

body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 15% 0%, rgba(243,221,177,.12), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(183,170,147,.10), transparent 55%),
              var(--bg);
  color: #f6f2ea;
}

/* Typography */
.hero-title,
.section-title{
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
}

.kicker{
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
}

.text-muted{
  color: rgba(183,170,147,.85) !important;
}

/* Navbar */
.nav-glass{
  background: rgba(37,34,36,.82);
  border-bottom: 1px solid rgba(124,113,94,.45);
  backdrop-filter: blur(10px);
}

.brand-mark{
  font-family: "Cinzel", serif;
  color: var(--gold);
  letter-spacing: .18em;
  font-weight: 800;
}

.brand-sub{
  font-size: .9rem;
  color: rgba(243,221,177,.75);
  display: none;
}

@media (min-width: 992px){
  .brand-sub{ display: inline; }
}

/* Buttons */
.btn-gold{
  --bs-btn-color: #1c191b;
  --bs-btn-bg: var(--gold);
  --bs-btn-border-color: var(--gold);
  --bs-btn-hover-bg: #f7e6c5;
  --bs-btn-hover-border-color: #f7e6c5;
  --bs-btn-active-bg: #eed3a0;
  --bs-btn-active-border-color: #eed3a0;
  box-shadow: 0 10px 28px rgba(243,221,177,.14);
}

.btn-outline-gold{
  --bs-btn-color: var(--gold);
  --bs-btn-border-color: rgba(243,221,177,.7);
  --bs-btn-hover-bg: rgba(243,221,177,.10);
  --bs-btn-hover-border-color: rgba(243,221,177,.9);
  --bs-btn-active-bg: rgba(243,221,177,.16);
  --bs-btn-active-border-color: rgba(243,221,177,.9);
}

/* Sections */
.section{
  padding: 5rem 0;
}

.section-alt{
  padding-top: 4rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.18) 25%, rgba(0,0,0,.28));
  border-top: 1px solid rgba(124,113,94,.35);
}

.section-head{
  max-width: 860px;
  margin: 0 auto 1.25rem;
}

.section-subtitle{
  color: rgba(183,170,147,.9);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.hero{
  padding: 5.5rem 0 4.25rem;
}

.hero-lead{
  color: rgba(246,242,234,.88);
  max-width: 42rem;
}

.hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.trust-chip{
  border: 1px solid rgba(124,113,94,.55);
  color: rgba(243,221,177,.85);
  padding: .4rem .65rem;
  border-radius: 999px;
  font-size: .85rem;
  background: rgba(45,41,44,.6);
}

/* Cards */
.hero-card,
.feature-card,
.form-card,
.contact-card{
  background: linear-gradient(180deg, rgba(45,41,44,.85), rgba(37,34,36,.85));
  border: 1px solid rgba(124,113,94,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card{
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero-card-topline,
.hero-card-bottomline{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(243,221,177,.9), transparent);
  opacity: .6;
}

.hero-logo{
  border-radius: calc(var(--radius) - .35rem);
  border: 1px solid rgba(124,113,94,.45);
  margin: .95rem 0;
  display: block;
}

.feature-card{
  padding: 1.25rem;
}

.feature-icon{
  font-size: 1.4rem;
  margin-bottom: .55rem;
  color: var(--gold);
}

.form-card{
  padding: 1.5rem;
}

.contact-card{
  padding: 1.25rem;
}

.contact-row{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px dashed rgba(124,113,94,.35);
}

.contact-row:last-child{
  border-bottom: none;
}

.contact-label{
  color: rgba(183,170,147,.95);
  font-size: .9rem;
}

.contact-value{
  color: rgba(246,242,234,.9);
  text-align: right;
}

/* Form controls */
.form-label{
  color: rgba(243,221,177,.85);
}

.form-control-dark{
  background: rgba(37,34,36,.65);
  border: 1px solid rgba(124,113,94,.55);
  color: rgba(246,242,234,.95);
}

.form-control-dark:focus{
  background: rgba(37,34,36,.80);
  border-color: rgba(243,221,177,.70);
  box-shadow: 0 0 0 .2rem rgba(243,221,177,.12);
  color: rgba(246,242,234,.98);
}

.form-control-dark::placeholder{
  color: rgba(183,170,147,.8);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(124,113,94,.35);
}

