/* =========================================================
   header-footer.css
   SHARED ACROSS ALL PAGES.
   Contains: design tokens, base/reset, typography, buttons,
   brand mark, section-spacing helpers, the site header
   (navbar) and the site footer, plus the global motion rule.
   Load this on every page BEFORE any page-specific stylesheet.
   Home-page section styles live separately in home.css.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0d2a44;
  --navy-deep:   #0a2236;
  --navy-card:   #11324f;
  --orange:      #e8763a;
  --orange-dark: #d5642a;
  --cream: #F7F2ED;
  --cream-soft:  #faf7f1;
  --ink:         #15263a;
  --muted:       #6c7886;
  --line:        #e7e0d4;
}
.row{
  margin-left:0;
  margin-right: 0;
}
/* ---------- Base ---------- */
* { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 .serif {font-family: 'Playfair Display', serif;font-weight: 400;/* color: var(--navy-deep); */}

.script { font-family: 'Dancing Script', cursive; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange) !important;
}

a { text-decoration: none; }

/* ---------- Buttons ---------- */
.btn-orange {
  background: var(--orange);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  transition: background .2s ease, transform .2s ease;
}
.btn-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-weight: 600;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  transition: background .2s ease;
  transition: background .2s ease, transform .2s ease, border .2s ease;
}
.btn-ghost:hover {background: rgba(255,255,255,.2);color: #fff;transform: translateY(-2px);}

.btn-navy {
  background: var(--navy);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  transition: background .2s ease;
  transition: background .2s ease, transform .2s ease;
}
.btn-navy:hover {background: var(--navy-deep);color: #fff;transform: translateY(-2px);}

.link-arrow {
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Brand mark (used by header navbar and footer) ---------- */
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, #f4a84b, #e8763a 70%);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
  flex: none;
}
.brand-mark::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:42%;
  background: linear-gradient(#0d2a44, #143b5e);
}
.brand-mark i { color:#fff; font-size:1.1rem; z-index:1; }
.brand-text small { letter-spacing: .12em; color: var(--orange); font-weight:600; }
.brand-name { font-size: 1.1rem; letter-spacing: .04em; }
.brand-sub  { font-size: .6rem; }

/* ---------- Section spacing & shared helpers ---------- */
.sec {padding: 3rem 0;}
.sec-tight {padding: 3rem 0;}
.heading-bold {font-weight: 400;color: var(--navy-deep);}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}
header nav{
  padding:0 !important;
}
header ul.navbar-nav.mx-auto{
  gap:20px;
}
.navbar-custom .nav-link {color: rgba(255,255,255,.9);font-weight: 500;font-size: 14px;padding: .4rem .85rem;}
.navbar-custom .nav-link:hover {color: var(--orange);}
.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.logo-head img{
  width:150px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.site {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: 2.5rem 0 0;
  position: relative;
  overflow:hidden;
}
footer.site h5 { color:#fff; font-family:'Inter',sans-serif; font-size:.82rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.1rem; }
footer.site a { color: rgba(255,255,255,.68); font-size:.86rem; display:block; padding:.28rem 0; }
footer.site a:hover { color: var(--orange); }
footer.site .desc { font-size:.85rem; max-width:280px; }
.footer-logo{
  margin-bottom:10px;
}
.soc {width:34px;height:34px;border-radius:50%;background: rgba(255,255,255,.1);color:#fff !important;display: flex !important;place-items:center;padding:0 !important;align-items: center;justify-content: center;}
.soc:hover { background: var(--orange); }

.news-input {background: rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:#fff;font-size: .85rem;}
.news-input::placeholder { color: rgba(255,255,255,.5); }
.news-input:focus { background: rgba(255,255,255,.14); color:#fff; box-shadow:none; border-color: var(--orange); }

.foot-contact i {color: #fff;margin-right:.5rem;}
.foot-bottom {border-top:1px solid rgba(255,255,255,.1);margin-top: 2rem;padding:1.2rem 0;font-size:.8rem;}
footer.site form .btn{
  font-size: .85rem;
}
footer.site form .btn:hover{
  transform: translateY(0px);
}
/* footer text helpers (formerly inline) */
.foot-line   { font-size: .86rem; }
.foot-note   { font-size: .82rem; }
.foot-addr-2 { margin-left: 1.75rem; }

/* ---------- Global motion preference ---------- */
@media (prefers-reduced-motion: reduce){
  * { transition:none !important; }
}
.row>*{
  margin-top:0;
}
footer.site .col-6.col-lg-2.col-md-3 {
    width: 15%;
    /* border-right: 1px dotted rgba(255,255,255,.68); */
    padding-left: 10px;
    padding-right: 10px;
}

footer.site .col-6.col-lg-2.col-md-3.contact-footer {
    width:18%;
}
footer.site  .col-lg-3{
    width: 21%;
}
footer.site  .footer-form{
  width: 31%;
}
footer.site .row{
  justify-content:space-between;
}
