@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600&family=Work+Sans:wght@300;400;500;600&display=swap');

/* Typography */

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

body {
  font-family: 'Work Sans', sans-serif;
}

/* Buttons */

.btn span {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

/* Flex layout for left, center, right alignment */

.footerHolder.py-4 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.footerHolder .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
}

/* Left side: Copyright */
.footerHolder .ftLink {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--vod-grey-text);
  font-size: 14px;
  z-index: 1;
  order: 1;
}

/* Right side: Social icons */
.footerHolder .socialIocnsHolder {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  order: 3;
}
.footerHolder ul.socialIocns {
  display: flex;
  gap: 16px;
  margin: 0;
  align-items: center;
}
.footerHolder ul.socialIocns li > a i,
.footerHolder ul.socialIocns li > a svg {
  font-size: 26px;
  color: var(--vod-svg-color);
}
.footerHolder ul.socialIocns li > a:hover i,
.footerHolder ul.socialIocns li > a:hover svg {
  opacity: 0.7;
}

/* Center logo using ::after */
.footerHolder .container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('https://vcz-bzzr-vodlix-cloud.b-cdn.net/u/bzzr/images/branding/custom/app_logo.png?lu=1745464878');
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  height: 72px;
  z-index: 0;
  pointer-events: none;
}

.footerHolder .ml-auto {
  display: none !important;
}

.footerHolder ul.socialIocns {
  margin-bottom: 0 !important;
}


/* Mobile: Stack layout */
@media (max-width: 768px) {
  .footerHolder .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footerHolder .ftLink,
  .footerHolder .socialIocnsHolder {
    justify-content: center;
  }

  .footerHolder .container::after {
    position: relative;
    transform: none;
    margin: 8px auto;
    width: 160px;
    height: 48px;
  }
}

/* Target the logo container */
.headerMain .logo {
  width: 120px !important;
  height: auto !important;
}
 
/* Target the logo image */
.headerMain .logo img {
  width: 80% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* Hide search input and button */
header .searchHolder {
  display: none !important;
}

/* Hide user profile dropdown including icon */
header .userMenu {
  display: none !important;
}