/* ========================================
GLOBAL
======================================== */

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f8f8f8;
  color: #1a1a1a;
  line-height: 1.7;
}

/* HEADINGS */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #0b1a2b;
}

h1 { font-size: 40px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }

/* ========================================
HEADER
======================================== */

.container-header {
  background: #151623;
}

/* ========================================
MENU
======================================== */

.container-header .mod-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.container-header .mod-menu > li {
  list-style: none;
}

.container-header .mod-menu > li > a {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 8px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.3s;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.container-header .mod-menu > li > a:hover {
  color: #d4af37;
}

/* CTA */

.container-header .mod-menu > li > a.menu-cta {
  background: linear-gradient(135deg, #d4af37, #f1d27a) !important;
  color: #000 !important;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}

.container-header .mod-menu > li > a.menu-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.45);
}

/* ========================================
CONTENT
======================================== */

main {
  background: #ffffff;
}

/* ========================================
BUTTONS
======================================== */

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f1d27a);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ========================================
SECTIONS
======================================== */

.section {
  padding: 70px 20px;
}

.section-light {
  background: #ffffff;
}

/* ========================================
HERO + CARDS GAP FIX
======================================== */

.container-banner,
.container-banner .mod-custom {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.container-top-a,
.container-top-a .mod-custom {
  margin: 0 !important;
  padding: 0 !important;
}

.container-top-a .top-a.card,
.container-top-a .card-body {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lhh-hero {
  margin-bottom: 0 !important;
}

/* ========================================
FOOTER (FIXED PROPERLY)
======================================== */

.lhh-footer-fw {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background: #151623;
  color: #e6e6e6;
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* CENTER WRAP */

.lhh-footer-wrap {
  max-width: 1100px; /* 🔥 reduced for better visual centering */
  margin: 0 auto;
}

/* JOOMLA FIX */

.container-footer .grid-child {
  max-width: 1100px;
  margin: 0 auto;
}

.container-footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* GRID (BALANCED NOW) */

.lhh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* 🔥 key fix */
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */

.lhh-footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.lhh-footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* HEADINGS */

.lhh-footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #d4af37;
}

/* LINKS */

.lhh-footer-col a {
  display: block;
  color: #d0d0d0;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}

.lhh-footer-col a:hover {
  color: #d4af37;
}

/* CTA */

.lhh-footer-cta a {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f1d27a);
  color: #000;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
}

/* BOTTOM */

.lhh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 15px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .lhh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .lhh-footer-grid {
    grid-template-columns: 1fr;
  }

  .lhh-footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* ========================================
FINAL TIGHTENING FIXES
======================================== */

/* 1) REDUCE HEADER -> HERO GAP AGAIN */
.container-header {
  background: #151623;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.header.container-header.full-width {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.container-header .grid-child,
.container-header .container-nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.container-banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.container-banner .mod-custom {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.lhh-hero {
  margin-top: 0 !important;
  padding-top: 30px !important;   /* was effectively feeling too tall */
  min-height: 72vh !important;    /* slightly tighter */
}

/* 2) KEEP HERO/CARDS TRANSITION TIGHT */
.lhh-fw {
  margin-top: -25px;
  position: relative;
  z-index: 2;
}

/* 3) FOOTER OUTER AREA MATCH THE SAME COLOUR */
.container-footer,
footer,
.site-grid .container-footer,
.site-grid > .container-footer {
  background: #151623 !important;
}

/* remove any pale/blue surround */
body:has(.lhh-footer-fw) .container-footer {
  background: #151623 !important;
}

/* footer module stays full width and matching */
.lhh-footer-fw {
  background: #151623 !important;
  margin-bottom: 0 !important;
}

/* footer wrapper centered properly */
.lhh-footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* prevent footer area adding odd padding/colour blocks */
.container-footer .grid-child {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.container-footer {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

/* optional: make the footer sit tighter to content */
.lhh-footer-fw {
  padding: 50px 20px 25px !important;
}