/*
  stylesheet for universal LACA header & footer
*/

.laca-header,
.laca-footer {
  font-family: 'Poppins', sans-serif;
}

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

.laca-header {
  background: #fff;
  border-top: 20px solid #f57a30;
  -webkit-box-shadow: 1px 1px 17px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 17px rgba(0,0,0,0.2);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999999;
}

/* Desktop header layout */
.laca-header .header-inner {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Left: site logo */
.laca-header .header-left {
  flex: 0 0 auto;
  min-width: max-content;
}

.laca-header .header-left img {
  height: 60px;
  width: auto !important;
  max-width: none !important;
  display: block;
  object-fit: contain;
}

/* Middle: centre banner */
.laca-header .header-middle {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.laca-header .header-middle img {
  height: 60px;
  width: auto !important;
  max-width: 100% !important;
  display: block;
  object-fit: contain;
}

/* Right: nav + burger (burger hidden on desktop later) */
.laca-header .header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

/* Navigation styling */
.laca-header ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.laca-header ul li {
  margin-right: 30px;
}

.laca-header ul li:last-of-type {
  margin-right: 0;
}

.laca-header ul a {
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #732C49;
  transition: color 300ms ease;
}

.laca-header ul a:hover {
  color: #F57A30;
}

/* Burger icon */
.l-nav {
  cursor: pointer;
}

/* Mobile nav container (hidden by default) */
.laca-header .m-nav {
  display: none;
}

/* ================================
   RESPONSIVE / BREAKPOINTS
   ================================ */

/* At <=1200px:
   - hide desktop nav
   - show burger
   - hide the centre banner (as requested)
   - enable slide-down mobile menu styling
*/
@media (max-width: 1200px) {
  .laca-header {
    position: relative;
  }

  .laca-header nav {
    display: none;
  }

  /* Hide centre banner on mobile/tablet */
  .laca-header .header-middle {
    display: none;
  }

  /* Slightly reduce logo size so header doesn't get huge */
  .laca-header .header-left img {
    height: 44px;
  }

  .laca-header .m-nav {
    background: #84425D;
    padding: 30px 0;
    text-align: center;
  }

  .laca-header .m-nav ul {
    display: block;
  }

  .laca-header .m-nav ul li {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .laca-header .m-nav ul li:last-of-type {
    margin-bottom: 0;
  }

  .laca-header .m-nav a {
    color: #F57A30;
  }
}

/* Desktop-only */
@media (min-width: 1201px) {
  .laca-header .container-fluid {
    padding-right: 120px;
    padding-left: 120px;
  }

  .l-nav {
    display: none;
  }

  .laca-header .m-nav {
    display: none !important;
  }
}

/* ================================
   FOOTER
   ================================ */

.laca-footer {
  background: #84425d;
  padding: 40px 0;
  color: #f7f7f7;
}

.laca-footer p {
  font-weight: 300 !important;
  font-size: 14px;
  line-height: 21px;
}

.laca-footer h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.laca-footer img {
  margin-bottom: 10px;
}

.laca-footer a {
  font-weight: 500;
  color: #f57a30;
  display: block;
  margin-bottom: 10px;
  transition: color 300ms ease;
}

.laca-footer a:hover {
  color: #cf540a;
  text-decoration: none;
}

.laca-footer ul {
  font-size: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.laca-footer ul a {
  text-decoration: none;
}

.sub-footer {
  background: #732c49;
  padding: 20px 0;
  text-align: center;
}

.sub-footer p {
  color: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

/* ================================
   Header size boost
   ================================ */

/* Desktop sizes */
.laca-header .header-left img,
.laca-header .header-middle img {
  height: 90px !important;   /* was 60px */
}

/* Mobile/tablet sizes */
@media (max-width: 1200px) {
  .laca-header .header-left img {
    height: 64px !important; /* was 44px */
  }
}

/* ================================
   Bigger left logo only
   ================================ */

/* Desktop */
.laca-header .header-left img {
  height: 150px !important;
}

/* Mobile / tablet */
@media (max-width: 1200px) {
  .laca-header .header-left img {
    height: 100px !important;
  }
}