:root {
  --md-primary-fg-color: #660099;
  --md-accent-fg-color: #f095e5;
}

/* Header i footer */
.md-header, .md-footer {
  background-color: var(--md-accent-fg-color);
  color: white;
}
.md-header {
  background-color: white;
  color: var(--md-primary-fg-color);
}

/* Header */
.md-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10vh;
  padding: 0 1vw;
}
.md-header__button.md-logo {
  display: flex;
  align-items: center;
  gap: 1vw;
  position: relative;
}
.md-header__button.md-logo::before {
  content: "";
  display: inline-block;
  background-image: url("../../assets/img/logo-caragolet.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 7vw;
  height: 8vh;
  margin-right: 0.5vw;
}
.md-header__button.md-logo a.logo-llopis {
  position: absolute;
  width: 7vw;
  height: 8vh;
  left: 0;
  z-index: 10;
}
.md-header__button.md-logo::after {
  content: "";
  display: inline-block;
  background-image: url(".../../assets/img/logos/GvaNext.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 15vw;
  height: 5vh;
  margin-left: 1.5vw;
}
.md-header__button.md-logo a.logo-gvanext {
  position: absolute;
  width: 15vw;
  height: 5vh;
  right: 0;
  z-index: 10;
}
.md-header__button.md-logo img {
  max-height: 6vh;
  margin-left: 1vw;
}

/* Fons */
body {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.7)), url("/assets/img/fondo.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Footer */
.md-footer-meta {
  background-color: white;
  width: 100%;
  padding: 10px 0;
}
.custom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: white;
  padding: 2vh 5vw;
  color: black;
  box-sizing: border-box;
  min-height: 10vh;
}
.footer-logo {
  display: inline-block;
  width: 12vw;
  height: 10vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-left {
  background-image: url(".../../assets/img/logos/FonsVal.png");
  margin-right: 2vw;
  flex-grow: 1;
}
.footer-right {
  background-image: url(".../../assets/img/logos/miniPla.png");
  margin-left: 2vw;
  width: 18vw;
  flex-grow: 2;
}
.footer-text {
  text-align: center;
  font-size: 0.6rem;
  flex-grow: 2;
  max-width: 50%;
}

/* Oculta títols de llengua i seccions */
.md-nav__title,
.md-nav__item.md-nav__item--section {
  display: none;
}

/* Substitueix icona d'idioma per bandera */
.md-header__button.md-header__button--language > svg {
  display: none;
}
.md-header__button.md-header__button--language {
  background-image: url("../img/flag-es.png"); /* mostra només una, no canvia automàticament */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
}


/* Oculta el títol si vols deixar només logo */
.md-header__title {
  display: none;
}


.md-header__button.md-logo img {
  display: none !important;
}


.logo-portada {
  display: block;
  margin: 2vh auto;
  max-width: 100px;
  width: 30%;
  height: auto;
}
