/* Proposta 2: banner dins la pàgina Inici */

/* Amaga capçalera amb imatge del tema (si n’hi hagués) */
.header-image, .custom-header, .wp-custom-header {
  display: none !important;
}

/* Evita retalls al header */
#masthead, #header, .site-header {
  height: auto !important;
  overflow: visible !important;
}

/* Banner a la portada (home) a pantalla completa */
.home .wp-block-image,
.home .wp-block-image img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
}

/* Treu marges laterals només a la portada */
.home #page, .home .site {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}



/* Forzar que el logo ocupe todo el ancho y se vea */
.site-branding, .site-logo, .custom-logo-link, .custom-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
}

/* Centrar la imagen si se queda a un lado */
.site-branding {
    text-align: center;
    display: block !important;
}
/* Menú principal: destacar "Preinscripció 26-27" en taronja */
.menu-preinscripcio > a{
  color:#ff7a00 !important;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
}


/* Opcional: fons suau tipus "pastilla" (descomenta si el vols)
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27/"],
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27"]{
  background:rgba(255,122,0,.12);
  padding:.35em .6em;
  border-radius:10px;
}
*/
/* "Preinscripció 26-27" com a botó al menú */
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27/"],
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27"]{
  background:#ff7a00 !important;
  color:#ffffff !important;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;

  padding:.45em .85em;
  border-radius:999px;

  border:2px solid #ff7a00;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* Hover / focus */
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27/"]:hover,
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27/"]:focus,
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27"]:hover,
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27"]:focus{
  background:#e86f00 !important;
  border-color:#e86f00 !important;
  color:#ffffff !important;
  text-decoration:none;
}

/* Millora d’accessibilitat: focus visible amb teclat */
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27/"]:focus-visible,
nav a[href="https://escolantaviana.org/category/preinscripcio-26-27"]:focus-visible{
  outline:3px solid rgba(255,122,0,.35);
  outline-offset:3px;
}
/* Reduir alçada de la capçalera (hero/header image) */
.site-header,
.header-image,
.custom-header,
.wp-block-cover.alignfull {
    min-height: 220px !important;
    height: 220px !important;
    overflow: hidden;
}

/* Ajustar la imatge perquè encaixi bé */
.site-header img,
.header-image img,
.custom-header img,
.wp-block-cover img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
}
/* Reduir mida de la imatge de capçalera */
.custom-logo,
.site-header img {
    max-height: 80px !important;
    width: auto;
}
/* =========================================================
   IE ANTAVIANA - Reduir imatge de capçalera (responsive)
   Tema WordPress (Gallery) + compatibilitat general
   ========================================================= */

/* --- Variables de mida (pots ajustar-les fàcilment) --- */
:root{
  --header-h-desktop: 260px;
  --header-h-tablet:  200px;
  --header-h-mobile:  140px;
}

/* =========================================================
   ESCRIPTORI (per defecte)
   ========================================================= */

/* Contenidor de capçalera / hero */
#masthead,
.site-header,
.custom-header,
.wp-custom-header,
.header-image,
.site-branding {
  overflow: hidden;
}

/* Imatge de capçalera (compatibilitat amb diversos temes) */
#masthead img,
.site-header img,
.custom-header img,
.wp-custom-header img,
.header-image img,
.site-branding img,
img.header-image,
img.custom-header {
  width: 100%;
  max-height: var(--header-h-desktop);
  height: var(--header-h-desktop);
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Si hi ha un bloc Cover de Gutenberg fent de capçalera */
.wp-block-cover.alignfull,
.wp-block-cover {
  min-height: var(--header-h-desktop) !important;
}

.wp-block-cover.alignfull img,
.wp-block-cover img {
  height: var(--header-h-desktop) !important;
  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   TAULETA (768px - 1024px aproximadament)
   ========================================================= */
@media (max-width: 1024px) {
  #masthead img,
  .site-header img,
  .custom-header img,
  .wp-custom-header img,
  .header-image img,
  .site-branding img,
  img.header-image,
  img.custom-header {
    max-height: var(--header-h-tablet);
    height: var(--header-h-tablet);
  }

  .wp-block-cover.alignfull,
  .wp-block-cover {
    min-height: var(--header-h-tablet) !important;
  }

  .wp-block-cover.alignfull img,
  .wp-block-cover img {
    height: var(--header-h-tablet) !important;
  }
}

/* =========================================================
   MÒBIL (fins a 767px)
   ========================================================= */
@media (max-width: 767px) {
  #masthead img,
  .site-header img,
  .custom-header img,
  .wp-custom-header img,
  .header-image img,
  .site-branding img,
  img.header-image,
  img.custom-header {
    max-height: var(--header-h-mobile);
    height: var(--header-h-mobile);
    object-position: center center;
  }

  .wp-block-cover.alignfull,
  .wp-block-cover {
    min-height: var(--header-h-mobile) !important;
  }

  .wp-block-cover.alignfull img,
  .wp-block-cover img {
    height: var(--header-h-mobile) !important;
  }
}

/* =========================================================
   OPCIONAL: reduir només el logo (si cal)
   ========================================================= */
/*
.custom-logo,
.site-logo img {
  max-height: 60px !important;
  width: auto !important;
}
*/