/* Sección con la foto de fondo */
#academy-golf {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 90vh;
    z-index: 0;
}

/* Banner superior */
#academy-golf .text-highlight__banner {
    position: absolute;
    /* ← Lo sacamos del flujo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 25px 0;
    /* Ajusta según necesidad */
}

/* Ajustamos la franja semitransparente */
#academy-golf .golf-overlay {
    position: absolute;
    top: 90px;
    /* ← Altura real aproximada del banner */
    right: 0;
    width: 32%;
    height: calc(100% - 90px);
    /* ← Para que se centre en el área visible */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Contenido dentro de la franja */
#academy-golf .golf-content {
    color: white;
    padding: 40px;
    line-height: 1.6;
    font-size: 17px;
}

#academy-golf .golf-content p {
    margin-bottom: 1em;
}

#academy-golf .golf-content .link-btn {
    border-color: white;
}