/* ===================== */
/* GENERAL DEL COS I TEXT */
/* ===================== */
body {
    background-color: #fafafa;
    color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===================== */
/* TÍTOL DEL CLUB */
/* ===================== */
header {
    text-align: center;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a4aebd, #a5b1c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===================== */
/* LOGO I BOTÓ ACCÉS */
/* ===================== */
.logo-acces {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 1rem;
    background-color: #001f4d;
}

.logo-escola {
    height: 100px;
    width: auto;
}
.logo-escola-centre {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.acces-usuaris {
    margin: 0;
}

.btn-acces {
    display: inline-block;
    background-color: #ffcc00;
    color: #003366;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-acces:hover {
    background-color: #e6b800;
    color: white;
}

/* ===================== */
/* MENÚ DE NAVEGACIÓ */
/* ===================== */
.nav-publica {
    background-color: #8fa0b1;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    overflow: visible;
}

.nav-publica ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-publica li {
    position: relative;
}

.nav-publica a {
    color: rgb(32, 52, 63);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.nav-publica a:hover {
    background-color: #5b7985;
    border-radius: 5px;
}

.nav-publica a.active {
    color: #fcfcfb;
    background-color: transparent;
}

/* ===================== */
/* DESPLEGABLE */
/* ===================== */
.desplegableContingut {
    display: none;
    position: absolute;
    background-color: #777f86;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 10;
    border-radius: 0.25rem;
    padding: 0.5rem 0;
}

.desplegable:hover .desplegableContingut {
    display: block;
}

.desplegableContingut a {
    padding: 0.5rem 1rem;
    text-align: left;
}

/* ===================== */
/* HR DIVISÒRIA */
/* ===================== */
.linea {
    border: none;
    border-top: 2px solid white;
    margin: 0.5rem 0;
}

/* ===================== */
/* SECCIÓ EQUIPS */
/* ===================== */


/* Contenidor apila files */
.container-equips {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Cada fila pot tenir 1 o 2 categories */
.fila-categories {
    display: flex;
    gap: 1rem;
}

/* Si hi ha 2 categories a la fila: 50% cadascuna */
.fila-categories .categoria-bloc {
    flex: 1 1 50%;
}

/* Si només hi ha 1: ocupa tot l'ample */
.fila-categories.single .categoria-bloc {
    flex: 1 1 100%;
}

/* Mòbil: sempre 1 per fila */
@media (max-width: 768px) {
    .fila-categories {
        flex-direction: column;
    }
    .fila-categories .categoria-bloc,
    .fila-categories.single .categoria-bloc {
        flex-basis: 100%;
    }
}


.titol-categoria {
    font-size: 1.5rem;
    color: #6744b9;
    margin-bottom: 0.75rem;
    text-align: center;         /* Centra el text */
    font-weight: bold;          /* Opcional: remarcar */
    text-transform: uppercase;  /* Opcional: tot en majúscules */
}


.categoria-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.categoria-foto {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.modalitat {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #444;
}

.botons-equips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-equip {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s;
        cursor: pointer;

}

.btn-equip:hover {
    background-color: #042547;
        cursor: pointer;

}

.subcategoria-text {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.1;
}

.equip-nom {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.2rem;
    display: block;
}


/* ===================== */
/* PEU DE PÀGINA */
/* ===================== */
.footer-public {
    background-color:  #001f4d;
    color: white;
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    font-size: 1rem;
}

.footer-public a {
    color: #ffde00;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-public a:hover {
    text-decoration: underline;
}

.footer-public .social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-public .social-icons a:hover {
    transform: scale(1.2);
    color: #fcd000;
}

/* ===================== */
/* BOTONS EXTRA */
/* ===================== */
.MedioA button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.MedioA button:hover {
    background-color: #001f4d;
}

.titol-noticies {
    color: #003366;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.titol-noticies {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}
.femeni-btn {
    background-color: #d82a64; /* Un rosa clar, pots canviar-lo */
    color: white; /* Color del text per assegurar que es llegeixi bé */


}

.femeni-btn:hover {
    background-color: #ca1e58; /* Un rosa clar, pots canviar-lo */
    color: white; /* Color del text per assegurar que es llegeixi bé */
}
/* Menys separació entre files de categories */
.container-equips {
    gap: 0.2rem; /* abans 2rem */
}

/* Menys separació entre columnes de la fila */
.fila-categories {
    gap: 0.5rem; /* abans 1rem */
}

/* Reduir espai sota el títol de categoria */
.titol-categoria {
    margin-bottom: 0.5rem; /* abans 0.75rem */
}

/* Reduir espai entre botons d’equips */
.botons-equips {
    gap: 0.5rem; /* abans 1rem */
    margin-top: 0.3rem; /* abans 0.5rem */
}
/* Espai lateral extra només entre grups de subcategories */
.grup-subcategoria:not(:first-child) {
    margin-left: 1rem; /* ajusta al gust, p. ex. 1rem o 2rem */
}

/* Botons dins de cada subcategoria */
.grup-subcategoria {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* espai entre botons del mateix grup */
}

