/* ========================================
   CLUB
======================================== */

.club {

    flex: 1;

    background:
            linear-gradient(
                    to bottom,
                    #f7f7f7,
                    #ffffff
            );

    padding: 7rem 0;
}

.club-container {

    width: 90%;

    max-width: 920px;

    margin: auto;
}

.club-intro-block {

    margin-bottom: 8rem;
}

.club-subtitle {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 1.5rem;
}

.club-title {

    font-size: 5rem;

    font-weight: 900;

    color: var(--green-dark);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.club-line {

    width: 95px;
    height: 5px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-bottom: 2.5rem;
}

.club-intro-text {

    font-size: 1.5rem;

    line-height: 2;

    color: #2e2e2e;

    max-width: 780px;

    font-weight: 500;
}

.club-section {

    margin-bottom: 7rem;
}

.club-section h2 {

    font-size: 3rem;

    font-weight: 800;

    color: var(--green-dark);

    margin-bottom: 2.5rem;
}

.club-section p {

    font-size: 1.12rem;

    line-height: 2.3;

    color: #4a4a4a;

    margin-bottom: 2rem;

    text-align: left;
}

.club-quote {

    margin: 7rem 0;

    padding-left: 2rem;

    border-left: 5px solid var(--green-primary);
}

.club-quote p {

    font-size: 1.7rem;

    line-height: 2;

    color: var(--green-dark);

    font-weight: 600;

    font-style: italic;
}

.club-signature {

    margin-top: 7rem;

    padding-top: 3rem;

    border-top: 1px solid #e8e8e8;
}

.club-signature h3 {

    font-size: 2rem;

    color: var(--green-dark);

    margin-bottom: 0.5rem;
}

.club-signature span {

    color: #777;

    font-size: 1rem;

    font-weight: 500;

    letter-spacing: 1px;
}


/* ========================================
   EQUIPO TÉCNICO
======================================== */

.technical-team {

    flex: 1;

    background:
            linear-gradient(
                    to bottom,
                    #f7f7f7,
                    #ffffff
            );

    padding: 7rem 0;
}

.technical-team__container {

    width: 90%;

    max-width: 1250px;

    margin: auto;
}


/*  CABECERA  */

.technical-team__title {

    margin-bottom: 6rem;
}

.technical-team__title span {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 1.5rem;
}

.technical-team__title h1 {

    font-size: 5rem;

    font-weight: 900;

    color: var(--green-dark);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.technical-team__line {

    width: 95px;
    height: 5px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-bottom: 2.5rem;
}

.technical-team__title p {

    font-size: 1.3rem;

    line-height: 2;

    color: #2e2e2e;

    max-width: 750px;

    font-weight: 500;
}


/*  ENTRENADORES  */

.technical-team__grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 3rem;
}

.coach-card {

    width: 270px;

    display: flex;

    flex-direction: column;
}


/*  IMAGEN  */

.coach-card__image {

    overflow: hidden;

    border-radius: 18px;

    margin-bottom: 1.5rem;

    box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.08);
}

.coach-card__image img {

    width: 100%;

    height: 430px;

    object-fit: cover;

    object-position: center top;

    display: block;
}


/*  CONTENIDO  */

.coach-card__content {

    text-align: center;
}

.coach-card__content h2 {

    font-size: 1.2rem;

    font-weight: 800;

    color: var(--green-dark);

    margin-bottom: 0.6rem;

    text-transform: uppercase;
}

.coach-card__content span {

    display: block;

    max-width: 260px;

    margin: 0 auto;

    font-size: 0.78rem;

    line-height: 1.5;

    letter-spacing: 0.5px;

    color: #666;

    font-weight: 500;
}

/*  DIRECTOR TÉCNICO  */

.technical-team__director {

    display: flex;

    justify-content: center;

    margin-bottom: 5rem;
}

.coach-card--director {

    width: 420px;
}

.coach-card--director .coach-card__image img {

    height: 520px;
}


/* ========================================
   JUNTA DIRECTIVA
======================================== */

.board {

    flex: 1;

    background:
            linear-gradient(
                    to bottom,
                    #f7f7f7,
                    #ffffff
            );

    padding: 7rem 0;
}

.board__container {

    width: 90%;

    max-width: 1100px;

    margin: auto;
}

.board__title {

    margin-bottom: 6rem;
}

.board__title span {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 1.5rem;
}

.board__title h1 {

    font-size: 5rem;

    font-weight: 900;

    color: var(--green-dark);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.board__line {

    width: 95px;
    height: 5px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-bottom: 2.5rem;
}

.board__title p {

    font-size: 1.3rem;

    line-height: 2;

    color: #2e2e2e;

    max-width: 750px;

    font-weight: 500;
}

.board__grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;
}

.board-card {

    background-color: var(--white);

    border-radius: 18px;

    padding: 2.5rem;

    border: 1px solid #ececec;
}

.board-card__content span {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    margin-bottom: 1rem;

    text-transform: uppercase;
}

.board-card__content h2 {

    font-size: 1.6rem;

    color: var(--green-dark);

    line-height: 1.4;
}


/* ========================================
   INSTALACIONES
======================================== */

.facilities {

    flex: 1;

    background:
            linear-gradient(
                    to bottom,
                    #f7f7f7,
                    #ffffff
            );

    padding: 7rem 0;
}

.facilities__container {

    width: 90%;

    max-width: 1250px;

    margin: auto;
}

.facilities__title {

    margin-bottom: 5rem;
}

.facilities__title span {

    display: inline-block;

    color: var(--green-primary);

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 1.5rem;
}

.facilities__title h1 {

    font-size: 5rem;

    font-weight: 900;

    color: var(--green-dark);

    line-height: 1;

    margin-bottom: 1.5rem;
}

.facilities__line {

    width: 95px;
    height: 5px;

    background-color: var(--green-light);

    border-radius: 30px;

    margin-bottom: 2.5rem;
}

.facilities__title p {

    font-size: 1.3rem;

    line-height: 2;

    color: #2e2e2e;

    max-width: 700px;

    font-weight: 500;
}


/* HERO IMAGE */

.facilities__hero {

    margin-bottom: 5rem;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
            0 20px 50px rgba(0,0,0,0.08);
}

.facilities__hero img {

    width: 100%;

    height: 550px;

    object-fit: cover;
}


/* CONTENT */

.facilities__content {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 4rem;

    align-items: center;

    margin-bottom: 6rem;
}

.facilities__text h2 {

    font-size: 3rem;

    color: var(--green-dark);

    margin-bottom: 2rem;

    font-weight: 800;
}

.facilities__text p {

    font-size: 1.1rem;

    line-height: 2.2;

    color: #4a4a4a;

    margin-bottom: 2rem;
}

.facilities__side-image {

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
            0 15px 40px rgba(0,0,0,0.08);
}

.facilities__side-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;
}


/* ========================================
   FACILITIES INFO
======================================== */

.facilities-info {

    display: flex;
    flex-direction: column;

    gap: 2rem;

    margin-bottom: 6rem;
}

.facilities-info__item {

    display: flex;

    gap: 2rem;

    padding-bottom: 2rem;

    border-bottom: 1px solid #e5e5e5;
}

.facilities-info__item span {

    font-size: 2.5rem;

    font-weight: 800;

    color: rgba(126, 203, 59, 0.35);

    min-width: 70px;
}

.facilities-info__item h3 {

    font-size: 1.7rem;

    color: var(--green-dark);

    margin-bottom: 0.8rem;

    font-weight: 800;
}

.facilities-info__item p {

    font-size: 1.05rem;

    line-height: 2;

    color: #555;
}


/* BOTTOM IMAGE */

.facilities__bottom-image {

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
            0 20px 50px rgba(0,0,0,0.08);
}

.facilities__bottom-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;
}


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

@media (max-width: 1100px) {

    .technical-team__grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .board__grid {

        grid-template-columns: 1fr;
    }

    .facilities__content {

        grid-template-columns: 1fr;

        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .club {

        padding: 4rem 0;
    }

    .club-title {

        font-size: 3rem;
    }

    .club-intro-text {

        font-size: 1.2rem;
    }

    .club-section h2 {

        font-size: 2rem;
    }

    .club-section p {

        font-size: 1rem;

        line-height: 2;
    }

    .technical-team {

        padding: 4rem 0;
    }

    .technical-team__title h1 {

        font-size: 3rem;
    }

    .technical-team__grid {

        grid-template-columns: 1fr;
    }

    .coach-card__image img {

        height: 380px;
    }

    .board__title h1 {

        font-size: 3rem;
    }

    .facilities {

        padding: 4rem 0;
    }

    .facilities__title h1 {

        font-size: 3rem;
    }

    .facilities__text h2 {

        font-size: 2rem;
    }

    .facilities__hero img,
    .facilities__side-image img,
    .facilities__bottom-image img {

        height: 300px;
    }

    .facilities-info__item {

        flex-direction: column;

        gap: 1rem;
    }

    .facilities-info__item span {

        font-size: 2rem;
    }

    .facilities-info__item h3 {

        font-size: 1.4rem;
    }

    .facilities__title h1.extends-title {

        font-size: 2.3rem !important;
        line-height: 1.15 !important;
        word-break: break-word;

    }

}